Role of placeholder in Boost::bind in the following example

后端 未结 1 1283
你的背包
你的背包 2020-12-21 23:52

There are numerous example on SO regarding the use of placeholders however I am still a little bit confused and would appreciate it if someone could explain the difference b

相关标签:
1条回答
  • 2020-12-22 00:23

    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!

    0 讨论(0)
提交回复
热议问题