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.
オブジェクトを追加する方法を知っています:
ArrayList<Object> ob = new ArrayList<Object>(); ob.add (index, some_object);
しかし、オブジェクトに「名前」というフィールドがあるとしましょう。その 1 つのフィールドだけを変更するにはどうすればよいでしょうか? 例えば:
ob.setName(name);
(私はこれがうまくいかないことを知っています。)