derived class

派生类:面向对象编程中从另一个类派生出来的类
常用释义
派生类:面向对象编程中从另一个类派生出来的类,继承了基类的属性和方法,并可以添加自己的属性和方法。

例句

1·It calls a method in a derived class.

它调用了它派生类中的方法。

2·A derived class inherits properties from a base class.

一个有源的基类中继承属性。

3·Create a derived class inherited from the predefined grammar class.

创建一个从预定义grammar类继承而来的派生类。

4·Now the constructor can be correctly inherited by a derived class.

现在构造器可以正确的通过继承而得到一个子类。

5·How do I write the move assignment function for this derived class?

我怎样为这个派生类编写移动赋值函数?

6·There is no automatic conversion from the base class to a derived class.

从基类到派生类的自动转换是不存在的。

7·At this point, you will want to link your dialog bar to your derived class.

在这一点上,你会希望你的对话框栏连接到您的派生类。

8·When overridden in a derived class, sets the encoder back to its initial state.

在派生类中重写时,将编码器设置回它的初始状态。

9·I have a base class. How do I call the right method for the right derived class?

我有一个基类。我怎么叫正确的派生类的正确方法?

10·Suppose you have a derived class D whose base class B has implemented some interfaces.

假设有个类型D,它的基类B实现了某些接口。