Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有多个线程实例化同一个类。我没有并发问题。我的问题是性能方面的。
我已经意识到访问全局变量有时会对性能产生显着影响。这是为什么?什么是最佳做法?我应该将全局变量复制到某些成员变量吗?即使全局变量不会产生并发问题,我是否应该避免它们?