用另一个布尔值提升可选
boost optional with another boolean
我正在尝试编译类似于此的内容:
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;
}
是否有可能实现它 - 将有效对象存储在变量中并将其分解为布尔值?
您可以将 while
更改为 for
,例如:
for (boost::optional<Obj> retVal = f(true), retVal && run; retVal = f(true))
{
std::cout << retVal.i;
}
我正在尝试编译类似于此的内容:
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;
}
是否有可能实现它 - 将有效对象存储在变量中并将其分解为布尔值?
您可以将 while
更改为 for
,例如:
for (boost::optional<Obj> retVal = f(true), retVal && run; retVal = f(true))
{
std::cout << retVal.i;
}