new(vtable 中的新槽)(C++ 组件扩展)
new 关键字指示虚拟成员将在 vtable 中获得新槽。
备注
new 关键字具有许多用途和含义。有关更多信息,请参阅解疑主题new。
所有运行时
(无适用于所有运行时的语言功能的备注。)
Windows 运行时
Windows 运行时中不支持
公共语言运行时
备注
在 /clr 编译,new 指示虚拟成员将在 vtable 中获得新槽;函数不重写基类方法。
new 导致newslot 修饰符添加到该函数的 IL。有关 newslot 视图的更多信息,请参见 。
要求
编译器选项:/clr
示例
示例
下面的示例显示了 new 的效果。
// newslot.cpp
// compile with: /clr
ref class C {
public:
virtual void f() {
System::Console::WriteLine("C::f() called");
}
virtual void g() {
System::Console::WriteLine("C::g() called");
}
};
ref class D : public C {
public:
virtual void f() new {
System::Console::WriteLine("D::f() called");
}
virtual void g() override {
System::Console::WriteLine("D::g() called");
}
};
ref class E : public D {
public:
virtual void f() override {
System::Console::WriteLine("E::f() called");
}
};
int main() {
D^ d = gcnew D;
C^ c = gcnew D;
c->f(); // calls C::f
d->f(); // calls D::f
c->g(); // calls D::g
d->g(); // calls D::g
D ^ e = gcnew E;
e->f(); // calls E::f
}
Output