封裝

wen-210162704027發表於2024-08-01
//封裝就是把不想或者不該告訴別人的東西隱藏起來。把可以告訴別人的公開
//做法:修改屬性的訪問許可權來限制對屬性的訪問。併為每一個屬性建立一對取值方法和賦值方法,用於對這些屬性的訪問

class Student{
	private char gender;
	public void setGender(char gender){
		if(gender=='男'||gender=='女'){
			this.gender=gender;
		}else{
			System.out.println("請輸入正確的性別");
		}
	}
	public char getGender(){
		return this.gender;
	}
}


public class Test1 {
	public static void main(String[] args){
		Student one=new Student();
		one.setGender('f');
		System.out.println(one.getGender());
		
	}
}

相關文章