我正在用 Java 实现一个多线程程序,其中每个程序thread
都是一个类型class Node extends Thread
。
所有这些类都会生成某些值,这些值将被其他类使用。
因为main
从 generated 中获取值很容易threads
,但是从其threads
自身内部,我怎样才能获取 other 上的值threads
?
//Start the threads from a list of objects
for (int i = 0; i < lnode.size(); i++) {
lnode.get(i).start();
}
谢谢