What is the purpose of std::make_pair?
Why not just do std::pair<int, char>(0, 'a')?
Is there any difference between the two methods?
|
|
|
The difference is that with See this example from http://www.cplusplus.com/reference/std/utility/make_pair/
Aside from the implicit conversion bonus of it, if you didn't use make_pair you'd have to do
every time you assigned to one, which would be annoying over time... |
|||||||||
|
|
There is no difference between using
|
|||
|
|
|
It's worth noting that this is a common idiom in C++ template programming. It's known as the Object Generator idiom, you can find more information and a nice example here. |
|||
|
|