lua有GC,细节无需太关注,知道些基本的就行,能local就一定不要global;
还有在数组里的对象,除非显式=nil,否则很难回收;
不过可以用弱引用表来告诉GC。外部引用为0,就不要管我,请del it。
weak table是通过元表实现,元表里的__mode字段包含k或者v;k表示key为弱引用;v表示value为弱引用。
1、首先看一个普通的例子:
a = {}
ke...
分类:
其他好文 时间:
2014-06-16 11:57:59
阅读次数:
306
从egl判断内核的的版本:
OpenGL ES Shader Compiler Version: E031.24.00.14
Build Date: 04/29/14 Tue
Local Branch: mybranch3162585
Remote Branch: quic/LNX.LA.3.5.2.2_rb1
Local Patches: NONE
Reconstruct Branch: AU...
分类:
其他好文 时间:
2014-06-16 11:36:18
阅读次数:
229
1: wget
http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.13.1.tar.gztar -zxvf
libiconv-1.13.1.tar.gzcd libiconv-1.13.1./configure --prefix=/usr/local/li...
分类:
Web程序 时间:
2014-06-16 09:44:08
阅读次数:
223
Service 是android的一种机制,如果是Local Service,那么对应的
Service 是运行在主进程的 main 线程上的。如果是Remote Service,那么对应的 Service 则是运行在独立进程的 main
线程上。因此请不要把 Service 理解成线程,它跟线程半...
分类:
其他好文 时间:
2014-06-16 08:26:17
阅读次数:
143
安装说明系统环境:Centos-6.3安装软件:mongodb-linux-x86_64-2.2.2.tgz下载地址:http://www.mongodb.org/downloads安装机器:192.168.15.237上传位置:/usr/local/软件安装位置:/usr/local/mongod...
分类:
数据库 时间:
2014-06-16 06:51:24
阅读次数:
339
现象:java.io.InvalidClassException:
com.engine.data.User; local class incompatible: stream classdesc
serialVersionUID = -6012532569298149921, local clas...
分类:
编程语言 时间:
2014-06-16 06:41:21
阅读次数:
432
Intent resultIntent = null; if
(!TextUtils.isEmpty(tid)){ resultIntent = new Intent("com.shijiebang.notify");
resultIntent.putExtra("_notify_url...
分类:
其他好文 时间:
2014-06-16 00:29:55
阅读次数:
297
Amazon SNS(Simple Notification Service)是一种基于云平台的消息通知和推送服务。SNS提供简单的 Web 服务接口和基于浏览器的管理控制台让用户能够简易设置、运行并从云中发送消息通知和推送服务。它为开发人员提供高度可扩展、灵活并且经济高效的从应用发布消息的功能,并立即将这些消息推送给订阅者或其他应用程序。...
分类:
移动开发 时间:
2014-06-15 16:59:54
阅读次数:
367
【python】UnboundLocalError: local variable 'counter' referenced before assignment...
分类:
编程语言 时间:
2014-06-15 16:15:26
阅读次数:
515