Java for ColdFusion Developers
E.12 Calling Methods
Methods are called using dot notation against the object that defines the method.
Car myCar = new Car(); myCar.honk();
| |
| Top |
Methods are called using dot notation against the object that defines the method.
Car myCar = new Car(); myCar.honk();
| |
| Top |