Skip to content

Latest commit

 

History

History
109 lines (83 loc) · 2.6 KB

new-new-slot-in-vtable-cpp-component-extensions.md

File metadata and controls

109 lines (83 loc) · 2.6 KB
title ms.custom ms.date ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic dev_langs helpviewer_keywords ms.assetid caps.latest.revision author ms.author manager
new (new slot in vtable) (C++ Component Extensions) | Microsoft Docs
11/04/2016
cpp-windows
language-reference
C++
new keyword [C++]
1a9a5704-f02f-46ae-ad65-f0f2b6dbabc3
20
mikeblome
mblome
ghogen

new (new slot in vtable) (C++ Component Extensions)

The new keyword indicates that a virtual member will get a new slot in the vtable.

All Runtimes

(There are no remarks for this language feature that apply to all runtimes.)

Windows Runtime

Not supported in Windows Runtime.

Common Language Runtime

Remarks

In a /clr compilation, new indicates that a virtual member will get a new slot in the vtable; that the function does not override a base class method.

new causes the newslot modifier to be added to the IL for the function. For more information about newslot, see:

Requirements

Compiler option: /clr

Examples

Example

The following sample shows the effect of 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

C::f() called  
  
D::f() called  
  
D::g() called  
  
D::g() called  
  
E::f() called  

See Also

Component Extensions for Runtime Platforms
Override Specifiers