静态方法怎么调用

cc.Class({
extends: cc.Component,

statics: {
    hello: function () {
        console.log("hello world");
    },
},

start() {
    //这么写直接闪红屏,报错:hello()是null,正确的该怎么写
   helloÏ();
},

});