求大神指点
臭虾酱 2017-03-31 05:14:24 class Student{
String name;
String country;
public Student(String name,String country){
this.name = name;
this,country = country;
}
}
class Demo2{
public static void main(String[] args)
{
Student,s1 = new Student("张三","中国");
Student.s2 = new Student("李四","中国"):
System.out.println("姓名"+s1.name+"国籍"+s1.country);
System.out.println("姓名"+s2.name+"国籍"+s2.countyr);
}
}