您好,登錄后才能下訂單哦!
所謂的不可變類是指這個類的實例一旦創建完成后,就不能改變其成員變量值。如JDK內部自帶的很多不可變類:Interger、Long和String等。
創建自定義不可變類需要遵守的規則:
1、使用private和final修飾成員變量。
2、提供帶參構造方法,用于初始化成員變量。
3、不要為成員變量提供setter方法。
4、如果成員變量中有可變類時需要重寫Object中的hashCode方法和equals方法。
例如:創建一個不可變的Person類
public class Person { private final String Name; private final String gender; /* * 無參構造方法 */ public Person(){ this.Name=""; this.gender=""; } /* * 有參構造方法 */ public Person(String Name , String gender){ this.Name = Name; this.gender = gender; } public String getName() { return Name; } public String getGender() { return gender; } /* * 重寫hashCode方法 * (non-Javadoc) * @see java.lang.Object#hashCode() */ @Override public int hashCode() { return Name.hashCode() + gender.hashCode(); } /* * 重寫equals方法 * (non-Javadoc) * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { if(this == obj) return true; if(obj != null && obj.getClass() == this.getClass()){ Person pe = (Person)obj; if(this.getName().equals(pe.getName()) && this.getGender().equals(pe.getGender())) return true; } return false; }
以上這個Person類中成員變量都是不可變類,如果其中有可變類,那么用以上的方法創建不可變類是有問題的,雖然Person的屬性是不可變的,但屬性引用的對象是可變的,
這樣就會使Person的不可變性遭到破壞,例如如下例子。
先創建一個可變類College
public class College { private String collNo; private String collName; public College(String collNo, String collName) { super(); this.collNo = collNo; this.collName = collName; } public College() { super(); } public String getCollNo() { return collNo; } public void setCollNo(String collNo) { this.collNo = collNo; } public String getCollName() { return collName; } public void setCollName(String collName) { this.collName = collName; } @Override public String toString() { return "College [collNo=" + collNo + ", collName=" + collName + "]"; }
在Person中引用College
public class Person { private final College college; public Person() { this.college = null; } public Person(College college) { super(); this.college = college; } public College getCollege() { return college; } @Override public String toString() { return "Person [college=" + college + "]"; } public static void main(String[] args){ College coll = new College("123456","土木工程"); Person pe = new Person(coll); System.out.println("----->" + pe); coll.setCollName("信息工程"); //這樣就會改變Person對象 System.out.println("======>" + pe); }
那么怎樣才能創建有可變屬性的不可變類呢?我們只要讓程序無法訪問到College屬性即可
public class Person { private final College college; public Person() { this.college = null; } public Person(College college) { //創建一個和傳入對象有相同屬性的College,賦值給成員變量 this.college = new College(college.getCollNo(),college.getCollName()); } public College getCollege() { //創建一個College將屬性的值賦值給它并返回 return new College(this.college.getCollNo(),this.college.getCollNo()); } @Override public String toString() { return "Person [college=" + college + "]"; }
不可變類是實例創建后就不可以改變成員遍歷的值。這種特性使得不可變類提供了線程安全的特性但同時也帶來了對象創建的開銷,每更改一個屬性都是重新創建一個新的對象。JDK內部也提供了很多不可變類如Integer、Double、String等。String的不可變特性主要為了滿足常量池、線程安全、類加載的需求。合理使用不可變類可以帶來極大的好處。
以上就是java中的不可變類及其創建規則的詳細內容,更多請關注億速云其它相關文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。