请问类声明中的statics是什么?

如教程 _tutorial-blackjack-1._0中 Game.js:
var Game = cc.Class({
extends: cc.Component,

properties: {
   ...
},

statics: {
    instance: null
},

其中statics代表什么? 在哪个教程中有解释?

这是‘静态成员’,单件singleton相关的东西。creator自带例子工程里有。

2赞