Car
object named myCar
, calls the fullThrottle
myCar
object, calls the speed
|
|
// A Java program to illustrate the method accessing public class Car { // Inside main, call two methods. public static void main( String[ ] args ) { Car myCar = new Car( ); boolean bool = Boolean.parseBoolean( args[1] ); if ( bool == true ) myCar.fullThrottle( ); else speed( Integer.parseInt( args[0] ) ); } // Create a fullThrottle( ) method. public void fullThrottle( ) { System.out.println( "200" ); } // Create a speed( ) method and add a parameter. public void speed( int maxSpeed ) { System.out.println( maxSpeed ); } } |
|
|
|
Car
class is created by using the class
keyword.
fullThrottle
speed
Car
class are created.
fullThrottle
speed
speed
int
parameter called maxSpeed
.
Car
class and its methods, we need to create an object of the Car
class.
main
new
keyword, a Car
object with the name myCar
is created.
fullThrottle
myCar
object, and run the program using the name of the object myCar
).
), followed by the name of the method fullThrottle
speed(200)
Jerry tries to teach Tuffy how to bell the cat (push his luck) in a last effort. |