Ext学习之1_类的定义2

Ext.namespace("com.deng");

//一个类肯定就有是private变量,public方法,继承等
com.deng.First = function() {
    // 私有成员
    var kiss = "中华人民共和国";
    // 私有方法

    // 公有方法
    return {
        // 公有成员
        init : function() {
            alert("the method is init");
            alert("kiss = " + kiss);
        },
        // 公有成员
        method : function() {
            alert("the method is method");
        }
    }
}

/**
 * 备注:在function和return 之间定义的成员都是private,在return内部定义的都是public
 */

//测试
var first = new com.deng.First();
first.init();

你可能感兴趣的:(ext)