derived class是什么意思,derived class的意思翻译、用法、同义词、例句
常用词典
派生类;衍生类别
例句
It calls a method in a derived class.
它调用了它派生类中的方法。
A derived class inherits properties from a base class.
一个有源的基类中继承属性。
Create a derived class inherited from the predefined grammar class.
创建一个从预定义grammar类继承而来的派生类。
Now the constructor can be correctly inherited by a derived class.
现在构造器可以正确的通过继承而得到一个子类。
How do I write the move assignment function for this derived class?
我怎样为这个派生类编写移动赋值函数?
网络扩展资料
单词:derived class
词性:名词
发音:[dɪˈraɪvd klæs]
词义解释
- 派生类,指从一个或多个现有类继承属性和方法的类。
例句
- The "Rectangle" class is the base class, and the "Square" class is the derived class.
- “矩形”类是基类,而“正方形”类是派生类。
用法
"derived class"是面向对象编程中常用的术语,用于描述从现有类继承属性和方法的类。在Java、C#、Python等编程语言中,派生类通常使用关键字extends或者冒号来继承基类。
近义词
subclass, inherited class
反义词
base class, parent class