class Student{
int age;
String name;
static String schoolName;
public Student(int age,String name){
this.age=age;
this.name=name;
}
public void Introduce(){
System.out.println("大家好我叫"+name+",我今年"+age+"岁,来自"+schoolName+".");
}
}
public class Jieshao{
public static void main(String[] args){
Student.stu1=new Student(18,"小李");
Student.stu2=new Student(19,"小明");
Student.schoolName="哈佛";
stu1.Introduce();
stu2.Introduce();
}
}
int age;
String name;
static String schoolName;
public Student(int age,String name){
this.age=age;
this.name=name;
}
public void Introduce(){
System.out.println("大家好我叫"+name+",我今年"+age+"岁,来自"+schoolName+".");
}
}
public class Jieshao{
public static void main(String[] args){
Student.stu1=new Student(18,"小李");
Student.stu2=new Student(19,"小明");
Student.schoolName="哈佛";
stu1.Introduce();
stu2.Introduce();
}
}