constants in interfaces : interface « Class « Visual C++ .NET






constants in interfaces

 
#include "stdafx.h"
interface class I
{
   static const int i = 100;     // OK : static members OK
   literal int j = 50;           // OK : literals OK
};

   
  








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