class Student extends Human{
int RollNo;
String ClassName;
int RollNo;
String ClassName;
Student(){
System.out.println("I am constructor of Student Class");
}
public void setRollNo(int r){
RollNo=r;
}
public int getRollNo(){
return RollNo;
}
public void setClassName(String s){
ClassName=s;
}
public String getClassName(){
return ClassName;
}
public static void main(String agr[]){
RollNo=r;
}
public int getRollNo(){
return RollNo;
}
public void setClassName(String s){
ClassName=s;
}
public String getClassName(){
return ClassName;
}
public static void main(String agr[]){
new Student();
}
}
No comments:
Post a Comment