上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页
摘要: 本篇文章讲解了计算机的原码, 反码和补码. 并且进行了深入探求了为何要使用反码和补码, 以及更进一步的论证了为何可以用反码, 补码的加法计算原码的减法. 论证部分如有不对的地方请各位牛人帮忙指正! 希望本文对大家学习计算机基础有所帮助! 在学习原码, 反码和补码之前, 需要先了解机器数和真值的概念. 阅读全文
posted @ 2016-03-16 20:39 lianghe 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 在c++里的引用其实是一个变量的别名,而java则是一个变量存储实际对象的地址和C++指针很相似 阅读全文
posted @ 2016-03-16 19:53 lianghe 阅读(338) 评论(0) 推荐(0) 编辑
摘要: 1、Xcode6模拟器路径与Xcode5模拟器路径对比: 阅读全文
posted @ 2016-03-15 13:53 lianghe 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 在Xcode调试程序的时候,总是会出现不知道错误在什么地方的问题,很是捉急,现在又一个办法,可以具体定位到错误行的代码,试一下吧?超级好用 操作很简单: 1、在XCode界面中按cmd + 6快捷键,或者直接点击选项卡,跳到Breakpoint的tab 2、然后点击左下角的+号,增加一个Except 阅读全文
posted @ 2016-03-14 17:08 lianghe 阅读(694) 评论(0) 推荐(0) 编辑
摘要: 1.C的结构体和C++结构体的区别 1.1 C的结构体内不允许有函数存在,C++允许有内部成员函数,且允许该函数是虚函数。所以C的结构体是没有构造函数、析构函数、和this指针的。 1.2 C的结构体对内部成员变量的访问权限只能是public,而C++允许public,protected,priva 阅读全文
posted @ 2016-03-12 14:09 lianghe 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 1.手动补全 esc键 阅读全文
posted @ 2016-03-11 11:56 lianghe 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 1.手动补全快捷键 设置completion+basic或者completion+smartType 2.快速导入指定API的包 command+1 阅读全文
posted @ 2016-03-11 11:13 lianghe 阅读(138) 评论(0) 推荐(0) 编辑
摘要: /etc/profile是全局的,是私有的 /etc/profile用于整个系统所有用户, ~/.bash_profile, ~/.profile和~/.bashrc 用于各个用户,这里的"~"符号就是各当前用户的$HOME ~/.bash_profile 和 ~/.profile 只在登陆时读取一 阅读全文
posted @ 2016-03-11 10:22 lianghe 阅读(1824) 评论(0) 推荐(0) 编辑
摘要: 1.UICollectionViewDemo1[1249:398101] Failed to instantiate the default view controller for UIMainStoryboardFile 'Main' - perhaps the designated entry 阅读全文
posted @ 2016-03-03 15:02 lianghe 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 解决办法: 在info.plist中添加 <key>NSAppTransportSecurity</key><dict> <key>NSAllowsArbitraryLoads</key> <true/></dict> 阅读全文
posted @ 2016-02-26 14:08 lianghe 阅读(131) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 17 下一页