Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
453 views
in Technique[技术] by (71.8m points)

boolean - C++, set bool to false, return old

This code:

bool b = isTrue;
isTrue = false;

saves old isTrue value to b, then sets isTrue to false. All good, but is there a way to perform this in one line? In the end I would like to achieve this:

bool b = isTrue ? /* assign true and flip `isTrue` value to false */ : false;
question from:https://stackoverflow.com/questions/65946859/c-set-bool-to-false-return-old

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

std::exchange can be used to do exactly this:

bool b = std::exchange(isTrue, !isTrue);

It's equivalent to:

bool b = (isTrue := !isTrue)

Where := is a magical assignment operator that returns the old value rather than the freshly-assigned value.


If you instead would like b to have the old value of isTrue and set isTrue to false, as the discussion in the comments suggests, you can do this with:

bool b = std::exchange(isTrue, false);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...