标签: c++ c++14 short-circuiting syntactic-sugar bitwise-and
虽然我找不到参考资料,但可能重复。
有人问过类似的引文:Short circuit on |= and &= assignment operators in C#用于其他语言
bool bRes; bRes = bRes & SomeFunc()
bool bRes; bRes &= SomeFunc()
bool bRes; bRes = bRes && SomeFunc()
bool bRes; ???
是否存在用于短路和分配的语法糖?