摘要: CA = {} CA.TestCb = function(self, cb) if not self._cb then self._cb = function() cb() end end self._cb() end CA:TestCb(function() print("cb1") end) CA:TestCb(function() ... 阅读全文
posted @ 2018-02-28 18:26 时空观察者9号 阅读(543) 评论(0) 推荐(0) 编辑