Let's say that I've got a :
#include <utility>
using namespace std;
typedef pair<int, int> my_pair;
how do I initialize a const my_pair ?
Let's say that I've got a :
#include <utility>
using namespace std;
typedef pair<int, int> my_pair;
how do I initialize a const my_pair ?
Use its constructor:
const my_pair p( 1, 2 );
With C++11 you can also use one of the following:
const my_pair p = {2, 3};
const my_pair p({2, 3});
const my_pair p{2, 3};