Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が持っているとしましょう:
#include <utility> using namespace std; typedef pair<int, int> my_pair;
const my_pair を初期化するにはどうすればよいですか?
そのコンストラクターを使用します。
const my_pair p( 1, 2 );
const my_pair p = std::make_pair( 2, 3);
const my_pair p = my_pair(3, 2);