Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はJavascriptで見た、
var obj = { } function addMember(memberName,value) { obj[memberName] = value; }
すなわち。オブジェクトは、オブジェクト/クラス宣言で以前に名前が知られていないメンバーを持つことができます.Javaにも同様の方法があります.名前が不明なオブジェクトに新しいメンバーを追加できますか?
これはマップで行うことができます。
Map<String, Object> map = new HashMap<>(); map.put(memberName, value);