摘要: http://www.itzhai.com/the-executorservice-common-method-newfixedthreadpool-of-create-fixed-size-thread-pool.htmlhttp://tutorials.jenkov.com/java-util-concurrent/executorservice.html 阅读全文
posted @ 2014-02-26 14:17 AlexFan 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 域名解析http://baike.baidu.com/view/30676.htm根域名服务器http://zh.wikipedia.org/wiki/%E6%A0%B9%E5%9F%9F%E5%90%8D%E6%9C%8D%E5%8B%99%E5%99%A8 阅读全文
posted @ 2012-09-27 17:03 AlexFan 阅读(360) 评论(0) 推荐(1) 编辑
摘要: 当使用 self 调用方法时,会从当前类的方法列表中开始找,如果没有,就从父类中再找;而当使用 super 时,则从父类的方法列表中开始找。然后调用父类的这个方法。Messages to self and superObjective-C provides two terms that can be used within a method definition to refer to the object that performs the method—self and super.Suppose, for example, that you define a reposition met 阅读全文
posted @ 2012-07-02 11:35 AlexFan 阅读(386) 评论(0) 推荐(0) 编辑
摘要: 简单讲,编译器就是将“高级语言”翻译为“机器语言(低级语言)”的程序。一个现代编译器的主要工作流程:源代码 (source code) → 预处理器 (preprocessor) → 编译器 (compiler) → 汇编程序 (assembler) → 目标代码 (object code) → 链接器 (Linker) → 可执行程序 (executables)Structure of a compiler Compilers bridge source programs in high-level languages with the underlying hardware. A comp 阅读全文
posted @ 2012-06-28 11:18 AlexFan 阅读(609) 评论(0) 推荐(0) 编辑
摘要: High-quality graphics are an important part of all iOS applications. The simplest (and most efficient) way to create an application is to use prerendered images together with the standard views and controls of the UIKit framework and let the system do the drawing. However, there may be situations wh 阅读全文
posted @ 2012-06-26 16:08 AlexFan 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 由于计算机内部只能接受二进制代码,因此,用二进制代码0和1描述的指令称为机器指令,全部机器指令的集合构成计算机的机器语言,用机器语言编程的程序成为目标程序。只有目标程序才能被计算机直接识别和执行。机器语言机器语言是直接用二进制代码指令表达的计算机语言,指令是用0和1组成的一串代码,它们有一定的位数,并分成若干段,各段的编码表示不同的含义,例如某台计算机字长为16位,即有16个二进制数组成一条指令或其它信息。16个0和1可组成各种排列组合,通过线路变成电信号,让计算机执行各种不同的操作。汇编语言汇编语言:是用能够反映指令功能的助记符来表示指令的程学设计语言,用助记符来代表0、1编程,即符号化了的 阅读全文
posted @ 2012-06-26 14:52 AlexFan 阅读(866) 评论(0) 推荐(0) 编辑
摘要: Objective-C blockhttp://www.cnblogs.com/studentdeng/archive/2012/02/03/2336863.htmlobjective-c block 详解http://www.j2megame.org/index.php/content/view/2625/165.html介绍Apple GNU C/C++,objective-C/C++中的新特性——Blockshttp://www.cocoachina.com/bbs/simple/?t9222.html 阅读全文
posted @ 2012-06-26 10:09 AlexFan 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 面试题中常见的C++ 虚拟方法:#include<iostream.h>classA{public:virtualvoidprint(void){cout<<"A::print()"<<endl;}};classB:publicA{public:virtualvoidprint(void){cout<<"B::print()"<<endl;};};classC:publicB{public:virtualvoidprint(void){cout<<"C::print()&q 阅读全文
posted @ 2012-06-26 10:01 AlexFan 阅读(780) 评论(2) 推荐(0) 编辑
摘要: 或许您还不知道的八款Android开源游戏引擎http://blog.csdn.net/cping1982/article/details/5788921黑米GameDev街区http://www.himigame.com/category/android-game 阅读全文
posted @ 2012-06-26 09:56 AlexFan 阅读(380) 评论(0) 推荐(0) 编辑
摘要: iPhone游戏开发:使用到的工具和技术http://mobile.51cto.com/iphone-261944.htm6个月从“菜鸟”到“牛人” iOS游戏开发者成长记http://mobile.51cto.com/hot-261182.htm进阶:成为iPhone游戏开发者的十大秘技http://mobile.51cto.com/news-235831.htm 阅读全文
posted @ 2012-06-26 09:56 AlexFan 阅读(505) 评论(0) 推荐(1) 编辑