Java for ColdFusion Developers
E.10 Constructors
Constructors are invoked when an object is created. Constructors have the same name as the class and do not return a value.
class myClass { myClass() { // constructor } }
| |
| Top |
Constructors are invoked when an object is created. Constructors have the same name as the class and do not return a value.
class myClass { myClass() { // constructor } }
| |
| Top |