我正在尝试编译类似于此的内容:
struct Obj { int i = 100; };
boost::optional<Obj> f(const bool _b)
{
if (_b) return Obj(); else return boost::none;
}
int main()
{
bool run = true;
while (boost::optional<Obj> retVal = f(true) && run)
{
std::cout << retVal.i;
}
return 0;
}
是否有可能完全实现它-将有效对象存储在变量中并将其分解为 bool(boolean) 值?
最佳答案
您可以将while
更改为for
,例如:
for (boost::optional<Obj> retVal = f(true), retVal && run; retVal = f(true))
{
std::cout << retVal.i;
}
关于c++ - 用另一个 bool 值 boost 可选,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60741618/