You are on page 1of 1

/******************************************************************************

Online Java Compiler.


Code, Compile, Run and Debug java program online.
Write your code in this editor and press "Run" button to execute it.

*******************************************************************************/
class vehicle{

private String model;


private String colour;
vehicle(String s)
{
this.colour=s;
}
public String getColour()
{
return colour;
}

class suv extends vehicle{


private String vno;

suv(String q)
{
this.vno=q;
}
public String getVno()
{
return vno;
}

public class Main


{
public static void main(String[] args) {

suv S = new suv("KL05AF7354");

}
}

You might also like