Constructing a Value Object
There are two ways to construct a value. It can be specified with an initial value:
IliValue initVal = 3;
IliValue stringVal = “Good morning.”
Also, it can be constructed by specifying the data type explicitly:
IliValue boolVal(IliBooleanType);
In this case, the value has an initial value of null.
Published date: 05/24/2022
Last modified date: 02/24/2022