将变量从一个线程输出到另一个线程

Outputting variable from one thread to other

我有一个无限循环的线程运行,不断更新一个变量。我如何在线程的另一个 thread/outside 中访问该变量的实时值(不处于无限循环中)?

最好的方法是使用全局变量。 但是,您需要注意线程同时读写一个变量时的锁定条件。

There is a good manual for example.