posted @ 2010-06-12 16:26 Bill Yuan 阅读(816) 评论(0) 推荐(0) 编辑
摘要:
GCC参数详解 [版本] -0.13 [介绍] gcc and g++分别是gnu的c & c++编译器 gcc/g++在执行编译工作的时候,总共需要4步 1.预处理,生成.i的文件[预处理器cpp] 2.将预处理后的文件不转换成汇编语言,生成文件.s[编译器egcs] 3.有汇编变为目标代码(机器代码)生成.o的文件[汇编器as] 4.连接目标代码,生成可执行程序[链接... 阅读全文
摘要:
转自:http://lab.polygonal.de/2008/06/18/using-object-pools/Joa Ebert is right when he says that utilizing object pools can make your code perform a lot faster. An object pool is just a container for a b... 阅读全文
posted @ 2010-06-11 14:25 Bill Yuan 阅读(1085) 评论(0) 推荐(0) 编辑
摘要:
转自:http://www.duzengqiang.com/blog/post/548.html效果:代码 阅读全文
posted @ 2010-06-10 14:05 Bill Yuan 阅读(778) 评论(0) 推荐(0) 编辑
摘要:
转自:http://www.duzengqiang.com/blog/post/295.htmlevery(callback:Function, thisObject:* = null):Boolean检测是否数组所有元素都满足 callback 方法指定的条件。some(callback:Function, thisObject:* = null):Boolean检测数组中是否有元素满足 cal... 阅读全文
posted @ 2010-06-10 12:13 Bill Yuan 阅读(701) 评论(0) 推荐(0) 编辑
摘要:
打开PHP_error.log,搜索VerboseException,看到: [19-May-2010 09:57:17] PHP Fatal error:Uncaught exception 'VerboseException' with message 'Standalone Flash player disabled. Update gateway.php to allow these ... 阅读全文
posted @ 2010-06-07 21:01 Bill Yuan 阅读(3933) 评论(0) 推荐(0) 编辑
摘要:
as3:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--varrequest=newURLRequest('http://localhost/test.php');request.method=URLRequestMethod.POST;varda... 阅读全文
posted @ 2010-06-07 15:10 Bill Yuan 阅读(1960) 评论(2) 推荐(0) 编辑