Flex Objects


 

Flex Objects

Objects are real entity conforming the template or blueprint defined by its class. The class defines the properties and behavior for its objects.

Objects are real entity conforming the template or blueprint defined by its class. The class defines the properties and behavior for its objects.
Objects are real entity conforming the template or blueprint defined by its class. The class defines the properties and behavior for its objects. Flex provides numerous built in classes like String, Boolean, Number, Array etc. You can also define your classes called user defined classes and make objects of these classes according to the need of your application.

var bool:Boolean = new Boolean(true);

var myObj:MyClass = new MyClass();

Ads