我必须更新对象列表中的对象字段
我有一堂“书”
class Book{
String name ;
int count;
....constructor
.. getter setters
}
现在我有一个方法 updateCount
public void updateCount() {
List<Book> books = new ArrayList<Book>() {
{
add(new Book("Book1", 1));
add(new Book("Book2" , 2));
// it can be more than 2 and in any manner not in any defined sequence but we can
// identify with the book name
}
}
public static void main(String[] args) {
/// now i have to update the value of count to 3 in book2
/// how can I update
}
如果有人有使用 java 8 的解决方案,那就太好了
手掌心
30秒到达战场
Helenr
qq_笑_17
慕婉清6462132
相关分类