假設我有很多的變量有沒有一種快速的方式來適應變量的功能?
String not_id, not_section, not_steet, not_sqTotal, not_sqLiving, not_sqKitchen, not_flat, not_floor, not_floors, not_text, user_phone1, user_phone2, user_contact, not_region, not_district, not_settle, not_price, not_photo, not_date, not_date_till, not_up, not_premium, not_status;
not_id= not_section= not_steet= not_sqTotal= not_sqLiving=
not_sqKitchen= not_flat= not_floor= not_floors= not_text=
user_phone1= user_phone2= user_contact= not_region= not_district=
not_settle= not_price= not_photo= not_date= not_date_till= not_up=
not_premium= not_status=region_title=district_title=settle_title=section_title="";
,我需要使用someFunction
not_id = someFunction(not_id);
改變自己的價值觀我該怎麼辦所有變量這樣的行動?
請不要建議使用數組,列表和其他類型的集合,如果它假設將變量名稱更改爲統一的名稱。
我知道在java本身內部是否存在這樣的可能性,eclipse ide或eclipse插件。
唯一的方法是重複行...但爲什麼你不只是使用數組串[])? – jamp
您將以代碼重複和維護地獄結束這樣的變量聲明。改爲使用地圖。 – Bananeweizen
我需要這個gui,我不知道我可以如何使用gui使用地圖 – Yarh