std::tie
返回一个引用元组,因此您可以执行以下操作:
int foo, bar, baz;
std::tie(foo, bar, baz) = std::make_tuple(1, 2, 3);
这与foo, bar, baz = (1, 2, 3)
Python 中的类似。
如果其中一项任务抛出,应该发生什么,如下例所示?
int foo = 1337;
struct Bar {
Bar& operator=(Bar) { throw std::exception{}; }
} bar;
try {
std::tie(foo, bar) = std::make_tuple(42, Bar{});
} catch (std::exception const&) {
std::cout << foo << '\n';
}
它会打印 1337 或 42,还是未指定?