One of uses of placeholders is to change the arguments order of a particular function
Example taken from boost . Assume you previously have f(x, y)
and g(x,y,z)
. Then
bind(f, _2, _1)(x, y); // f(y, x)
bind(g, _1, 9, _1)(x); // g(x, 9, x)
bind(g, _3, _3, _3)(x, y, z); // g(z, z, z)
bind(g, _1, _1, _1)(x, y, z); // g(x, x, x)
It is interesting to note the following BOOST guide statement about the last example
Note that, in the last example, the function object produced by bind(g, _1, _1, _1) does not contain references to any arguments beyond the first, but it can still be used with more than one argument. Any extra arguments are silently ignored, just like the first and the second argument are ignored in the third example.
I think it is clear now that placeholders make this kind of replacement cleaner and more elegant.
In your particular case, the 2 uses are equivalent.
It is possible to selectively bind only some of the arguments. bind(f, _1, 5)(x) is equivalent to f(x, 5); here _1 is a placeholder argument that means "substitute with the first input argument."
Another good use of placeholders is when you have lots of arguments and you only want to bind one of them. Example: imagine h(a,b,c,d,e,f,g)
and you just want to bind the 6th argument!