If I have a constructor with n parameters such that any argument to that can be an rvalue and lvalue. Is it possible to do support this with move semantics for the rvalues without writing 2^n constructors for each possible rvalue/lvalue combination?
|
feedback
|
|
You take each one by value, like this:
The initialization of the function parameters by the argument will either be a copy-constructor or move-constructor. From there, you just move the function parameter values into your member variables. Remember: copy- and move-semantics are a service provided by the class, not by you. In C++0x, you no longer need to worry about how to get your own "copy" of the data; just ask for it and let the class do it:
Note: your constructor only takes in values, those values will figure out how to construct themselves. From there, of course, it's up to you to move them where you want them. This applies everywhere. Have a function that needs a copy? Make it in the parameter list:
In C++03, you could emulate it fairly well, but it wasn't common (in my experience):
| |||||||||||||||||
feedback
|
|
Take the following code ideone link.
Which outputs the following:
As can be seen, the pass by value approach in If you want best performance, I suggest the template approach in | ||||
|
feedback
|
|
Depending on what c++ compiler you are using, you could look into "functions with variable argument lists" The idea is that you can pass in as many parameters as you want to the method and it just populates into an array that you can loop through. For microsoft c++, the following blogposts might be helpful: http://msdn.microsoft.com/en-us/library/fxhdxye9(v=VS.100).aspx http://blogs.msdn.com/b/slippman/archive/2004/02/16/73932.aspx | |||||||
feedback
|
moveconstructor at all!) – iammilind Jul 14 '11 at 4:50Foo(Foo&& that), so I'm a little confused about what you're talking about. – zneak Jul 14 '11 at 4:52