Comments
Loading Dream Comments...
You must be logged in to write a comment - Log In
::SHE+ILA:: classes are built from a Template or "Class Factory". It contains the default values of the member variables and base methods. We instantiate it by means of the "-::>" operator (sometimes written as "::->"). This creates a back pointer to the Template buf for each of the fields and methods. The name table in the Template is used, and the instance's name table is therefore omitted. We can also derive a class from the base class and override any method, by storing a local lambda rather than using the back pointer. Currently multiple-inheritance is not implemented however (see Turbo C manual and Stroustrup). The class factory is built in the same way that a normal buf is built, it does not contain any specila coding (except maybe a method called "CTOR" and one called "DTOR" if a constructor or destructor are required). Since all data is inline (rather than indirect), "new" and "delete" are rarely required (back-pointers are automatically handled by the system).
We declare a class template as follows :
myclass <:: (
fieldname = defaultvalue,
field2 = value2,
janet = 42, julia = 43,
somemethod = [](){ .rnd. 6;},
anothermember = .pi.
);
Because a class template is a Buf (see FBI notes) its definition uses round parentheses (not braces as in C++) and commas between its components (members) not semicolons. This emphasises that a class is really a suped-up struct or vector :)
Note that this use of the "=" (equals) sign is the *only * usage in ::SHE+ILA::, we use <:: and ::> for specify or assignment, and .eq. or .ne. for logical comparison :)