- 316 名前:デフォルトの名無しさん [2020/08/14(金) 08:38:19 ID:jifd8sPx.net]
- >>303 C++(訂正)
#include <iostream> #include <tuple> int main() { int32_t max = ~(1 << 31); const auto [a, b, c] = [&]() { return std::tie(max, max, max); }(); std::cout << a << std::endl; std::cout << b << std::endl; std::cout << c << std::endl; }
|

|