1、transient防止用這個(gè)關(guān)鍵詞修飾的變量序列化。當(dāng)對(duì)象被反序列化時(shí),被 transient 修飾的變量值不會(huì)被持久化和恢復(fù)。
2、transient 只能修飾變量,不能修飾類和方法。
實(shí)例
public Catalog TreeCatalog(String catalogId) {
Catalog catalogNode = findById(catalogId).get(); // 查詢當(dāng)前節(jié)點(diǎn)
ListcatalogList = findChild(catalogId); //查詢?cè)摴?jié)點(diǎn)的所有子節(jié)點(diǎn)
for (Catalog child : catalogList) {
Catalog catalog = TreeCatalog(child.getCatalog_id());
catalogNode.getChildren().add(catalog);
}
return catalogNode;
}
以上就是java中transient的介紹,希望對(duì)大家有所幫助。更多關(guān)于“java培訓(xùn)”的問題,歡迎咨詢千鋒教育在線名師。千鋒教育多年辦學(xué),課程大綱緊跟企業(yè)需求,更科學(xué)更嚴(yán)謹(jǐn),每年培養(yǎng)泛IT人才近2萬人。不論你是零基礎(chǔ)還是想提升,都可以找到適合的班型,千鋒教育隨時(shí)歡迎你來試聽。