multiple interfaces : interface « Class « Visual C++ .NET






multiple interfaces

 

interface class MyInterface { void f(); };

interface class IB { void g(); };

ref class MyClass : MyInterface, IB
{
   public:
      virtual void f() {}
      virtual void g() {}
};

   
  








Related examples in the same category

1.Interface definition
2.base and interface
3.Interface and class(The virtual keyword is required to implement the interface method)
4.Interface list
5.Interface name collision
6.Interface properties events
7.constants in interfaces
8.interfaces implementing interfaces
9.static interfaces
10.class interface method ambiguity
11.Explicit interface implementation
12.Private interface