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






static interfaces

 

#include "stdafx.h"
using namespace System;

interface class MyInterface
{
   static int i = 6;
   static const int j = 100;

   static void f()  { Console::WriteLine("MyInterface::f " + i); }
};

ref class A : MyInterface
{
   public:

   static void f() { Console::WriteLine("A::f " + MyInterface::j); }
};

int main()
{
   A^ a = gcnew A();
   MyInterface^ ia = a;
   ia->f();    
   a->f();     
   MyInterface::f();
   A::f();      
   a->MyInterface::f();
}

   
  








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.multiple interfaces
10.class interface method ambiguity
11.Explicit interface implementation
12.Private interface