我有這樣的代碼:無法訪問私有成員 - 原子
class Animator{
public:
private:
bool _running;
atomic<bool> _waiting;
};
Visual Studio中說Error 2 error C2248: 'std::atomic<bool>::operator =' : cannot access private member declared in class 'std::atomic<bool>' d:\programmierung\uncertainty\uncertainty\uncertainty\animator.h 113
我看不到這個類和最小類之間的區別只用原子作爲一個會員,工作。
提供了一個完整但最小的例子。我沒有看到有問題的線路,而你的例子中充滿了不相關的東西*。 –