用于短路和分配的语法糖

时间:2016-11-10 13:52:05

标签: 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;
???

问题

是否存在用于短路和分配的语法糖?

0 个答案:

没有答案