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 list =... --> データベースからデータを取得
// リスト内のオブジェクトの値を変更します
for(MyObject object:list){ object.save(); }
この for ループの代わりに、save() を何度も呼び出すよりも効率的な複数の項目を保存する方法はありますか?