Derived Syntactical Constructs in Java: K. K. Wagh Polytechnic, Nashik-3
Derived Syntactical Constructs in Java: K. K. Wagh Polytechnic, Nashik-3
Derived Syntactical Constructs in Java: K. K. Wagh Polytechnic, Nashik-3
Chapter 2
class BoxClass
{
public static void main(String args[])
{
Box a = new Box(); //statement1
System.out.println("depth of a : "+a.depth);
Box b = new Box(12,23); //statement2
System.out.println("depth of b : "+b.depth);
Box c = new Box(99,84,36); //statement3
System.out.println("depth of c : "+c.depth);
}
}
this Keyword