class继承

ES6中引入class创建类,extends实现类的继承,通过new来创建实例类,这种形式的类的创建与继承与Java等面向对象编程语言更为相似

class Point{
    constructor(x,y){ // -- 每个类都要有constructor,若没有显式定义,则会默认添加空的constructor
        this.x = x
        this.y = y
    }
    toString (){
        return '('+this.x+','+this.y+')'
    }    
}
var p1 = new Point(1,2)
console.log(p1.toString()) //(1,2)

类的所有方法都是定义在prototype对象上的,可以通过Object.assign来给类添加属性方法,或者通过Object.getPrototypeof(obj),或者obj.__proto__来添加

Object.assign(Point.prototype,{ // 给类添加方法1
    toValue(){
        return Math.sqrt(this.x*this.x+this.y*this.y).toFixed(2)
    }
})
Object.getPrototypeOf(p1).toValue = function(){ // 给类添加方法2
    return Math.sqrt(this.x*this.x+this.y*this.y).toFixed(2)
}
p1.__proto__.toValue = function(){ 给类添加方法3
    return Math.sqrt(this.x*this.x+this.y*this.y).toFixed(2)
}
console.log("toValue",p1.toValue()) // 2.24

在类中,可以定义静态方法,在方法名前面加上static,不会被实例继承,调用时通过类来调用,不能通过实例来调用,父类中的静态方法会被子类继承

class Point{  
    static staticFunc(){
        console.log("this is a static function")
    } 
}
class ColorPoint extends Point{

}
var p1 = new Point()
Point.staticFunc() //this is a static function
ColorPoint.staticFunc() //this is a static function
p1.staticFunc() //TypeError: p1.staticFunc is not a function

es6中通过extends来实现类的继承子类的构造函数必须执行一次super,在执行super之前,不可以使用thissuper代表父类的构造函数,返回的是子类的实例,相当与A.prototype.constructor.call(this)

es5和es6的类的继承机制是不同的,es5是先创建子类实例对象this,然后再将父类上的方法添加到this上,es6则是通过现将父类方法添加到this上,然后再通过子类constructor改变this

class ColorPoint extends Point {
    constructor(x,y,color){
        super(x,y) 
        this.color = color
    }
    toString(){
        return this.color+" "+super.toString()
    }
}
var cp = new ColorPoint(2,3,'red') // 通过new来创建实例
console.log(cp instanceof ColorPoint) // true
console.log(cp instanceof Point) // true
console.log(Object.getPrototypeOf(ColorPoint) === Point) // true -- 用该方法来判断一个类是否继承另一个类


### SystemVerilog 类的继承用法 在SystemVerilog中,通过`extends`关键字实现类的继承。子类可以从父类继承所有非私有成员变量和方法,并可以在不改变原有功能的基础上增加新的特性。 #### 继承语法 ```systemverilog class ChildClass extends ParentClass; // 新增或覆盖的方法和属性 endclass ``` #### 实际案例展示 下面的例子展示了如何创建一个基础类并从中派生出一个新的子类: ```systemverilog // 定义一个基本类 BaseClass class BaseClass; int base_var; function new(int value); this.base_var = value; endfunction virtual function void display(); $display("Base variable is %0d", base_var); endfunction endclass // 创建一个从 BaseClass 派生的新类 DerivedClass class DerivedClass extends BaseClass; bit derived_flag; // 构造函数调用了父类构造函数来初始化base_var function new(int value, bit flag); super.new(value); // 调用父类构造器 this.derived_flag = flag; endfunction // 添加额外的功能 function void showFlag(); $display("Derived Flag status: %b", derived_flag); endfunction // 重载父类的方法 virtual function void display(); super.display(); // 可选:先执行父类的行为 $display("And the derived flag is set to %b", derived_flag); endfunction endclass ``` 在这个例子中,`DerivedClass`不仅获得了来自`BaseClass`的所有公共成员,还增加了自己的特性和行为。此外,还可以看到对父类方法进行了覆写以提供不同的实现逻辑[^2]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值