Я создал упрощенную версию своей задачи ниже, у меня есть Bag
структура и Item
структура. Я хочу создать 10 потоков, выполняющих метод item_action
из Bag на каждом item
в item_list
, и распечатать инструкцию, если оба атрибута элемента находятся в attributes
.
use std::sync::{Mutex,Arc};
use std::thread;
#[derive(Clone, Debug)]
struct Bag{
attributes: Arc<Mutex<Vec<usize>>>
}
impl Bag {
fn new(n: usize) -> Self {
let mut v = Vec::with_capacity(n);
for _ in 0..n {
v.push(0);
}
Bag{
attributes:Arc::new(Mutex::new(v)),
}
}
fn item_action(&self, item_attr1: usize, item_attr2: usize) -> Result<(),()> {
if self.attributes.lock().unwrap().contains(&item_attr1) ||
self.attributes.lock().unwrap().contains(&item_attr2) {
println!("Item attributes {} and {} are in Bag attribute list!", item_attr1, item_attr2);
Ok(())
} else {
Err(())
}
}
}
#[derive(Clone, Debug)]
struct Item{
item_attr1: usize,
item_attr2: usize,
}
impl Item{
pub fn new(item_attr1: usize, item_attr2: usize) -> Self {
Item{
item_attr1: item_attr1,
item_attr2: item_attr2
}
}
}
fn main() {
let mut item_list: Vec<Item> = Vec::new();
for i in 0..10 {
item_list.push(Item::new(i, (i+1)%10));
}
let bag: Bag= Bag::new(10); //create 10 attributes
let mut handles = Vec::with_capacity(10);
for x in 0..10 {
let bag2 = bag.clone();
let item_list2= item_list.clone();
handles.push(
thread::spawn(move || {
bag2.item_action(item_list2[x].item_attr1, item_list2[x].item_attr2);
})
)
}
for h in handles {
println!("Here");
h.join().unwrap();
}
}
При запуске у меня только одна строка, и программа просто останавливается там, не возвращаясь.
Item attributes 0 and 1 are in Bag attribute list!
Могу я узнать, что пошло не так? Пожалуйста, смотрите код в Детская площадка
Обновлено :
С предложением @loganfsmyth, программа может вернуться сейчас ... но все еще только печатает 1линия, как указано выше. Я ожидаю, что это напечатает 10, потому что у моего item_list
есть 10 пунктов. Не уверен, что логика моего потока верна.
Я добавил println!("Here");
при вызове join
всех потоков. И я вижу, что Here
напечатано 10 раз, просто не фактический журнал от item_action