Overloading Example

public int square( int x ) {

return x * x;

}

public double square( double y ) {

return y * y;

}

Or

public Time( ) //default constructor

public Time( int hr, int min, int sec ) //general constructor

public Time( Time time ) //copy constructor