private关键字的使用

package xingxi;

public class Student {
	//成员变量
	String name;
	int xiezi;
	private int age;
	public void setAge(int a) {
//		age=a;
		if(a<0||a>120) {
			System.out.println("你给的年龄有误");
		}
		else {
			age=a;
		}
	}
	public int getAge() {
		return age;
	}
	//成员方法
	public void show() {
		System.out.println(name+","+age);
	}
}

2.
package xingxi;

public class StudentDemo {
	public static void main(String[] args) {
		//创建对象
		Student s=new Student();
		//使用对象
		
		s.name="qing";
//		s.age=29;
//		s.age=-29;
		s.setAge(30);
		
		
		//调用show方法
		s.show();
	}
}

你可能感兴趣的:(java,开发语言)