Tagged Questions

32
votes
1answer
2k views

Overload on reference, versus sole pass-by-value + std::move?

It seems the main advice concerning C++0x's rvalues is to add move constructors and move operators to your classes, until compilers default-implement them. But waiting is a losing strategy if you use ...
27
votes
2answers
520 views

non-class rvalues always have cv-unqualified types

§3.10 section 9 says "non-class rvalues always have cv-unqualified types". That made me wonder... int foo() { return 5; } const int bar() { return 5; } void pass_int(int&& i) { ...
10
votes
5answers
342 views

What is decltype(0 + 0)?

(Prompted by an answer.) Given N3290, §7.1.6.2p4, where the list items are unnumbered, but numbered here for our convenience: The type denoted by decltype(e) is defined as follows: if e ...
9
votes
2answers
313 views

C++0x const RValue reference as function parameter

I am trying to understand why someone would write a function that takes a const rvalue reference. In the code example below what purpose is the const rvalue reference function (returning "3"). And ...
9
votes
3answers
389 views

passing rvalues through `std::bind`

I want to pass an rvalue through std::bind to a function that takes an rvalue reference in C++0x. I can't figure out how to do it. For example: #include <utility> #include <functional> ...
9
votes
2answers
203 views

What is “Extending move semantics to *this” all about?

Please, could someone explain in plain English what is "Extending move semantics to *this"? I am referring to this proposal. All what am looking for is what is that & why do we need that. Note ...
5
votes
2answers
167 views

Why is this rvalue call ambiguous?

Why is this rvalue call ambiguous? I can have AA and AA& and the compiler will know to use AA&. But when i add in the third option i get an error. Obviously AA&& is a better overload ...
4
votes
4answers
345 views

Do rvalue references allow dangling references?

Consider the below. #include <string> using std::string; string middle_name () { return "Jaan"; } int main() { string&& danger = middle_name(); // ?! return 0; } This ...
3
votes
2answers
467 views

Are std::streams already movable?

GNU gcc 4.3 partially supports the upcoming c++0x standard: among the implemented features the rvalue reference. By means of the rvalue reference it should be possible to move a non-copyable object or ...
2
votes
2answers
277 views

How may I forbid calls to const member function of an rvalue object in C++ 2011?

The following code #include <vector> #include <string> #include <iostream> std::string const& at(std::vector<std::string> const& n, int i) { return n[i]; } ...
1
vote
1answer
108 views

Different types of *-values [closed]

Possible Duplicate: What are rvalues, lvalues, xvalues, glvalues, and prvalues? The standard states: 3.2 The this pointer 1 In the body of a non-static (9.3) member function, the keyword ...
0
votes
2answers
94 views

literal and rvalue reference

void test(int && val) { val=4; } void main() { test(1); std::cin.ignore(); } Is a int is created when test is called or by default in c++ literals are int type?
0
votes
3answers
182 views

rvalue references break when deep-returning

I've encountered a problem when passing returned rvalue references from a depth of more than 1. struct Data { std :: vector <int> data; Data () { data .push_back (1); }; Data (Data ...
0
votes
1answer
113 views

Performance of move constructor of object with tuple member

I have a question about performance of move constructor, pseudo C++ class: typedef tuple<std::string, std::vector<double>, ...and more...> FooTupleMember; class Foo1 { public: ...