标签: android multithreading
我需要在线程完成时获取变量值:
1)类hello:运行Thread X;
2)线程X会做一些工作并设置一个带有某个值的变量J
3)类hello:在线程X完成后得到变量J值
答案 0 :(得分:0)
您现有的步骤“3)”应分为两个步骤:
3)类hello:加入Thread X
4)类hello:获取变量J
请参阅http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Thread.html#join()