代码改变世界

阅读排行榜

Android Service Summary

2013-07-29 11:29 by 三戒1993, 366 阅读, 收藏,
摘要: In the Androird, service is a none-UI background process that is doing somespecific jobs. 6.1 Example Program : Understanding of Android Service. 6.2 ... 阅读全文

StrictMode 详解

2015-05-15 16:44 by 三戒1993, 360 阅读, 收藏,
摘要: StrictMode类是Android 2.3 (API 9)引入的一个工具类,可以用来帮助开发者发现代码中的一些不规范的问题。比如,如果你在UI线程中进行了网络或者磁盘操作,StrictMode就会通过Log(logcat )或者对话框的方式把信息提示给你,因为让你的UI线程处理这里操作会被认为是... 阅读全文

iPhone对OpenGL ES的支持程度!

2013-02-19 16:34 by 三戒1993, 358 阅读, 收藏,
摘要: GLBenchMark的结果:http://www.glbenchmark.com/phonedetails.jsp?benchmark=pro&D=Apple%20iPhone&testgroup=gl这个很重要,复制一份,以备不时之需:OpenGL ES Environment Variable... 阅读全文

iOS 各种布尔值类型讲解

2013-01-09 10:43 by 三戒1993, 358 阅读, 收藏,
摘要: boolean_t t1 = 1;//int typeBoolean t2 = 1; //unsigned char typeBOOLt3 = 4;//YESorNObool t4 = 1;//true or falseNSAssert(t1, @"boolean_t t1 is NO");//通过... 阅读全文

linux扫盲之CPU模式

2013-06-18 14:22 by 三戒1993, 357 阅读, 收藏,
摘要: 相信研究linux的大大都知道linux有实模式、保护模式、虚拟模式三种。不多说,拷贝黏贴!80386开始,cpu有三种工作方式:实模式,保护模式和虚拟8086模式。只有在刚刚启动的时候是real-mode,等到linux操作系统运行起来以后就运行在保护模式。实模式只能访问地址在1M以下的内存称为常... 阅读全文
上一页 1 ··· 28 29 30 31 32 33 34 35 36 ··· 368 下一页