11 2014 档案

摘要:mac apache 终端重启、开启、关闭命令;sudo apachectl restartsudo apachectl startsudo apachectl stop测试 apache 配置是否有问题sudo apachectl configtest 阅读全文
posted @ 2014-11-20 12:27 mingcoder 阅读(286) 评论(0) 推荐(0)
摘要:使用 Lua 中的table.getn获得数组的table的长度;运行失败--> t ={1,2,3 }> print(table.getn(t))stdin:1: attempt to call field 'getn' (a nil value)stack traceback: stdin:1:... 阅读全文
posted @ 2014-11-14 11:57 mingcoder 阅读(535) 评论(0) 推荐(0)
摘要:词法定界 lexical scoping static scoping 词法定界(lexical scoping 有时叫静态域)是许多语言约定使用的,变量只能在这套范围(按功能排列)内被一些已经定义了的 代码段中调用(引用)。当被编译后,这些范围将被确定下来。变量定义用这种格式的时候叫私有变量。 ... 阅读全文
posted @ 2014-11-07 16:58 mingcoder 阅读(851) 评论(0) 推荐(0)