Tagged Questions
5
votes
2answers
241 views
Move semantics and operator overloading
This is related to this answer provided by Matthieu M. on how to utilize move semantics with the + operator overloading (in general, operators which don't re-assign directly back to the left param).
...
1
vote
2answers
119 views
Move constructor and char array argument
struct Foo
{
char data[100];
template<int T>
Foo(char (&&var)[T])
{
data = std::move(var);
var = 0;
}
};
int main()
{
char v[100];
...
2
votes
3answers
92 views
Will compilers apply move semantics automatically in a setter method?
I want to know if the compiler is allowed to automatically use the move constructor for wstring in the following setter method (without an explicit call to std::move):
void SetString(std::wstring ...
2
votes
3answers
124 views
Returning an rvalue reference from a nonlocal
I have a class that is queried for an internal state object:
class State {...}; //Has a copy and move constructor
class Processor
{
private:
std::unique_ptr<State> state;
public:
void ...
1
vote
1answer
199 views
Optimizing code with C++ 2011 move semantics [duplicate]
Possible Duplicate:
Can someone please explain move semantics to me?
Consider the following example code of a constant-size mathematical array :
// INCLUDE
#include <iostream>
...