• js学习类


    <script type="text/javascript">
                function Base(){
                //构造函数 类
                }
                //累成员
                Base.prototype.init=function(){
                    alert('Base hello');
                }
                //实例对象
                var bs=new Base();            
                //调用
                bs.init();
    </script>
    <script type="text/javascript">
                function Base(){//类
                    //成员方法
                    this.show = function(){ 
                        alert("Base show"); 
                    }; 
                    //成员方法
                    this.init = function(){ 
                        alert("Base init"); 
                    };
                }
                //实例对象
                var bs=new Base();            
                //调用
                bs.init();
    </script>
    <script type="text/javascript">
                function Base(){//类
                    
                }
                //成员方法
                Base.prototype.show = function(){ 
                    alert("ShapeBase show"); 
                }; 
                //成员方法
                Base.prototype.init = function(){ 
                    alert("ShapeBase init"); 
                };
                //静态方法 
                Base.StaticDraw = function(){ 
                    alert("method draw is static"); 
                } 
                //实例对象
                var bs=new Base();            
                //调用
                bs.init();
                //调用静态方法
                Base.StaticDraw();
    </script>
    

      附件下载

  • 相关阅读:
    Python连接MySQL乱码(中文变问号)
    mysql学习04 pymysql 学习
    mysql学习03
    多态与多态性
    重用父类功能的两种方式
    菱形继承问题
    组合
    继承的应用和派生的概念引出
    类的继承
    类与类型
  • 原文地址:https://www.cnblogs.com/sntetwt/p/2992233.html
Copyright © 2020-2023  润新知