js 定义类对象

 //定义类
    //方式一
    function A_class(arg1,arg2){
        this.arg1=arg1;
        this.arg2=arg2;
        this.toString=function(){
           alert(this.arg1+" "+this.arg2)
        }
    }
    var a_class = new A_class("aa","bb");
    a_class.toString();

    //方式二
    function B_class(arg1,arg2){
        this.arg1=arg1;
        this.arg2=arg2;
    }

    B_class.prototype={
        constructor:B_class,
        print:function(){
            alert(this.arg1+" "+this.arg2);
        }
    }
    var b_class = new B_class("11","22");
    b_class.print();

    //方式三

    function C_class(arg1,arg2){
        this.arg1=arg1;
        this.arg2=arg2;
    }

    C_class.prototype.output=function(){
        alert(this.arg1+" "+this.arg2);
    }
    var  c_class = new C_class("@@","##");
    c_class.output();

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。