Student 类
public class Student
{
public static String sex = null;
private String name = null;
public Student()
{
super();
}
public Student(String name)
{
super();
this.name = name;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
}
测试类
public class Test
{
public static void main(String[] args)
{
Student s1 = new Student();
s1.setName("tom");
Student.sex = "男";
Student s2 = new Student();
Student.sex = "女";
System.out.println("姓名:"+s2.getName()+"性别: "+Student.sex);
}
}
1.静态的属性属于类的,不依赖于某个对象,也可以称为类属性。不同的对象都可以访问到类的属性。带参数的构造方法中不能包含静态的属性。
它的生命随着类的消亡而消亡。
2.非静态属性只能属于某个对象,其它的对象不能访问它的属性。随着对象的消亡而消亡。