Eclipse 自動產生 JavaBean 某些 Attribute 之 Getter 與 Setter 的 Method 程式碼


在 Java 程式中對於 private attribute 的存取,

都會透過 getter 與 setter 這兩個 method 來存取,

在 Eclipse 中可以很快速方便地幫我們完成這些處理,

參考如下 :

第一種方式) 產生單一 attribute 的 getter 與 setter method

滑鼠移到 attribute 中, Eclipse 會自動彈出訊息框, 點選 "create getter and setter for ..." 即可 :


命名規則為 getAttributeNamesetAttributeName, 如下 :


範例結果, 如下 :


第二種方式) 產生多個 attribute 的 getter 與 setter method

將滑鼠放置在 class 程式中 :


按右鍵, 點選 "Source > Generate Getters and Setters" 項目即可 :


勾選要產生 getter 與 setter method 的 attribute :


範例結果, 如下 :


這樣, 是不是很方便快速.

Related Posts Plugin for WordPress, Blogger...