2005/5/10

     
 

Member Types

artefaktur

| Basic Types | Enum Types | Object Types | Array Types | Interface Types | Exception Types | Member Types | Method Types | Namespace Types | Foreign Types |



Members are variables bound to a ACDK class.


Content of this chapter:

   member types
     non static member
     static member



 member types

Member types in ACDK can be any valid C++ class member.
To support members through gargabe collection, reflection and DMI, the member types has to be  valid ACDK types otherwise the members are  foreign.

 non static member


class LegalAcdkClass
{
private:
  int intValue;
  RStringBuffer bufferValue;
};

 static member


class LegalAcdkClass
: extends acdk::lang::Object
{
private:
  static int intValue;
  static RStringBuffer bufferValue;
};