71 lines
1.9 KiB
Plaintext
71 lines
1.9 KiB
Plaintext
//
|
|
// $Id$
|
|
//
|
|
|
|
// Testing Harbour classes and objects management
|
|
// be aware Harbour provides a much simpler way using Class TClass (source\rtl\class.prg)
|
|
|
|
#define MET_METHOD 0 // these defines should be declared with these specific values
|
|
#define MET_DATA 1 // as Harbour Classes building modules uses them
|
|
#define MET_CLASSDATA 2
|
|
#define MET_INLINE 3
|
|
#define MET_VIRTUAL 4
|
|
|
|
function Main()
|
|
|
|
local oObject := TAny():New()
|
|
|
|
QOut( ValType( oObject ) )
|
|
QOut( Len( oObject ) ) // 3 datas !
|
|
QOut( oObject:ClassH() ) // retrieves the handle of its class
|
|
|
|
QOut( oObject:ClassName() ) // retrieves its class name
|
|
|
|
oObject:Test() // This invokes the below defined Test function
|
|
// See QSelf() and :: use
|
|
QOut( oObject:cName )
|
|
|
|
oObject:DoNothing() // a virtual method does nothing,
|
|
// but it is very usefull for Classes building logic
|
|
|
|
return nil
|
|
|
|
function TAny() /* builds a class */
|
|
|
|
static hClass
|
|
|
|
if hClass == nil
|
|
hClass = ClassCreate( "TANY", 3 ) // cClassName, nDatas
|
|
ClassAdd( hClass, "cName", 1, MET_DATA ) // retrieve data
|
|
ClassAdd( hClass, "_cName", 1, MET_DATA ) // assign data. Note the '_'
|
|
ClassAdd( hClass, "New", @New(), MET_METHOD )
|
|
ClassAdd( hClass, "Test", @Test(), MET_METHOD )
|
|
ClassAdd( hClass, "DoNothing", 0, MET_VIRTUAL )
|
|
endif
|
|
|
|
/* warning: we are not defining datas names and methods yet */
|
|
|
|
return ClassInstance( hClass ) // creates an object of this class
|
|
|
|
static function New()
|
|
|
|
local Self := QSelf()
|
|
|
|
QOut( ValType( Self ) )
|
|
QOut( "Inside New()" )
|
|
|
|
::cName = "Harbour OOP"
|
|
|
|
return Self
|
|
|
|
static function Test()
|
|
|
|
local Self := QSelf() // We access Self for this method
|
|
|
|
QOut( "Test method invoked!" )
|
|
|
|
QOut( ::ClassName() ) // :: means Self: It is a Harbour built-in operator
|
|
|
|
return nil
|
|
|