我是并发新手。我想确保多个客户端可以在线程安全庄园中访问和更改书籍ArrayList。以下是否正确?我正在尝试使用简单的生产消费模型。
protected List<Book> books = Collections.synchronizedList(new ArrayList<Book>());
// producer consumer model
protected Object[] produce(JTextField input) {
synchronized (books) {
if (isInteger(input.getText())) {
for (Book b : books) {
if (Integer.parseInt(b.BookID) == Integer.parseInt(input
.getText())) {
b.Available = Integer.toString((Integer
.parseInt(b.Available) + 1));
saveTextRecord();
// show on table
return toTableDisplayObject(b.toString());
}
}
}
}
return null;
}
protected Object[] consume(JTextField input) {
synchronized (books) {
if (isInteger(input.getText())) {
for (Book b : books) {
if (Integer.parseInt(b.BookID) == Integer.parseInt(input
.getText())) {
b.Available = Integer.toString((Integer
.parseInt(b.Available) - 1));
saveTextRecord();
// show on table
return toTableDisplayObject(b.toString());
}
}
}
}
return null;
}
前端使用可能很明显的摆动,这个前端是多个用户将使用的。 isInteger()只返回一个布尔值,表示输入的值是否为整数。 toTableDisplayObject()用于将ArrayList转换为swing表使用的格式。
答案 0 :(得分:0)
这是一个糟糕的设计。每次只有1个消费者可以访问该资源。尝试使用ReadWriteLock或2 Semaphores来增强设计。