You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is MemberAccessModifier (i.e. PRIVATE, PUBLIC) and how to use it.
What is MemberType (i.e. METHOD, FIELD, CONSTRUCTOR, DESTRUCTOR) and how to use it.
How to add a method to an Object. (e.g. how we added the ObjectDestructor method).
What is the naming conventions for the method / field when adding a method / field. --> That the name should be the same as the full prototype of the method / the type and name of the field.
How to invoke a method.
How to print the Object With .toString to check for all the FIELDS / METHODS / PUBIC (...etc) members. And why this is important that you are able to do that. --> Because this way you can always get / set them and with their proper type (!).
What is LValue.
What is RValue.
Difference between IntegerRValue and DoubleRValue. In what cases we should use which, and how to use them.
Doc that IntegerRValue can contain any integer and which that includes any pointer (!), so this way for example, you can set a literal "string" to be an IntegerRValue.
Doc how to use
ObjectFor example:
Object. (e.g. how we added theObjectDestructormethod)..toStringto check for all the FIELDS / METHODS / PUBIC (...etc) members. And why this is important that you are able to do that. --> Because this way you can always get / set them and with their proper type (!).LValue.RValue.IntegerRValueandDoubleRValue. In what cases we should use which, and how to use them.IntegerRValuecan contain any integer and which that includes any pointer (!), so this way for example, you can set a literal "string" to be anIntegerRValue.