zoukankan      html  css  js  c++  java
  • ExtJS类的继承

    ExtJS类的继承主要是在定义类的时候指定其extend属性指向其需要继承的类

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
      <head>
        <title>05_inherit.html</title>
       
        <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
        <meta http-equiv="description" content="this is my page">商账追收
        <meta http-equiv="content-type" content="text/html; charset=UTF-8">
       
        <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
        <script type="text/javascript" src="../ext4/ext-all-debug.js"></script>
        <script type="text/javascript">
            Ext.onReady(function() {
                Ext.namespace("com.tiantian.test");
                com.tiantian.test.Person = function() {//定义一个对象
                    this.name = "默认名称";
                    this.age = 0;
                    this.country = "中国";
                }
                //也可以这样定义一个对象
                Ext.define("com.tiantian.test.Person1",{
                    name: "person1",
                    age: 30
                });
                Ext.define("com.tiantian.test.Student",{
                    extend: "com.tiantian.test.Person",//表示继承自哪个类
                    constructor: function(name, age) {//构造方法
                        this.name = name;
                        this.age = age;
                    },
                    role: "学生",
                    country: "新加坡",
                    getRole: function() {
                        return this.role;
                    }
                });
                Ext.define("com.tiantian.test.Teacher",{
                    extend: "com.tiantian.test.Person",
                    country: "马来西亚",
                    role: "老师"
                });
                var student = new com.tiantian.test.Student("张三",3);
                alert("name:"+student.name+" age:"+student.age+" role:"+student.role+student.getRole()+" country:"+student.country);
                var person1 = new com.tiantian.test.Person1();
                alert(person1.name);女装品牌排行榜
                var teacher = new com.tiantian.test.Teacher();
                teacher.name = "李四";
                teacher.age = 30;
                alert("name:"+teacher.name+" age:"+teacher.age+" role:"+teacher.role+" country:"+teacher.country);
            });
        </script>

      </head>
     
      <body>
        This is my HTML page. <br>
      </body>
    </html>

  • 相关阅读:
    poj 2763 Housewife Wind
    hdu 3966 Aragorn's Story
    poj 1655 Balancing Act 求树的重心
    有上下界的网络流问题
    URAL 1277 Cops and Thieves 最小割 无向图点带权点连通度
    ZOJ 2532 Internship 网络流求关键边
    ZOJ 2760 How Many Shortest Path 最大流+floyd求最短路
    SGU 438 The Glorious Karlutka River =) 拆点+动态流+最大流
    怎么样仿写已知网址的网页?
    5-10 公路村村通 (30分)
  • 原文地址:https://www.cnblogs.com/sky7034/p/2077277.html
Copyright © 2011-2022 走看看