是否有与此 python 语句等效的 C++11:
x, y, z = three_value_array
在 C++ 中,您可以这样做:
double x, y, z;
std::array<double, 3> three_value_array;
// assign values to three_value_array
x = three_value_array[0];
y = three_value_array[1];
z = three_value_array[2];
在 C++11 中是否有更紧凑的方法来实现这一点?