Supposed I have the following class:
class A
{
public:
...
...
void incrementN() {++n_;}
uint64_t getN() {return n_;}
private:
std::atomic<uint64_t> n_;
...
...
};
Assume that I initialize all the other variables in the class, except n_
and that this is not thread local storage, so there is no zero initialization.
I create an object of class A, and keep calling incrementN()
.
If at some point I want the value of n_
, and I call getN()
, can this cause the load()
routine for the atomic n_
to crash?
The load uses memory_order_seq_cst by default. See here: http://en.cppreference.com/w/cpp/atomic/memory_order.
As mentioned in the comments, it shouldn't give you any problems that normal ints won't give. Are you concerned about overflow if the uninitialised initial value is large? See here for possible consequences: https://www.owasp.org/index.php/Integer_overflow