The temporaries tag has no wiki summary.
17
votes
7answers
1k views
Are all temporaries rvalues in C++?
I have been coding in C++ for past few years. But there is one question that I have not been able to figure out. I want to ask, are all temporaries in C++, rvalues?
If no, can anyone provide me an ...
15
votes
3answers
775 views
C++ Copy constructor, temporaries and copy semantics
For this program
#include <iostream>
using std::cout;
struct C
{
C() { cout << "Default C called!\n"; }
C(const C &rhs) { cout << "CC called!\n"; }
};
const C f()
{
...
10
votes
3answers
259 views
Why is there no gcc/g++ warning for unused temporaries?
Consider the following code :
void ListenerImpl::attach(boost::shared_ptr<ISubscriber> subscriber)
{
boost::unique_lock<boost::mutex>(mtx);
subscribers.push_back(subscriber);
}
...
10
votes
1answer
362 views
Binding temporary to const reference in c'tor initializer list
Section 12.2.5 in C++03 says "A temporary bound to a reference member in a
constructor’s ctor-initializer (12.6.2) persists until the constructor exits"
So I tried following program
...
8
votes
2answers
160 views
Prevent temporary from extending its lifetime?
This may be impossible, but I was wondering if it was possible to keep a temporary from ever lasting past its original expression. I have a chain of objects which point to parent objects, and a member ...
7
votes
2answers
252 views
If temporaries are implicitly non-modifiable, how does this work?
I'm told that, in C++03, temporaries are implicitly non-modifiable.
However, the following compiles for me on GCC 4.3.4 (in C++03 mode):
cout << ...
4
votes
2answers
381 views
BOOST_FOREACH Iteration over boost::shared_ptr<list>
I'm doing something similar to this item Correct BOOST_FOREACH usage?
However, my returned list is wrapped in a boost::shared_ptr. If I do not assign the list to a variable before the BOOST_FOREACH ...
3
votes
5answers
283 views
Working around the C++ limitation on non-const references to temporaries
I've got a C++ data-structure that is a required "scratchpad" for other computations. It's not long-lived, and it's not frequently used so not performance critical. However, it includes a random ...
2
votes
0answers
59 views
Binding temporaries to references [closed]
Possible Duplicate:
How come a non-const reference cannot bind to a temporary object?
First up, I understand that the standard mandates that temporaries can only be bound to const ...
2
votes
10answers
222 views
When should I use temporary variables?
Specifically, I'm wondering which of these I should write:
{
shared_ptr<GuiContextMenu> subMenu = items[j].subMenu.lock();
if (subMenu)
subMenu->setVisible(false);
}
or:
{
...
1
vote
4answers
72 views
temporaries not behaving as const
Its unclear to me whether a temporary assumes type of const or not, in an expression as shown below.
#include <iostream>
class X {
public:
X(int a) { i = a; cout << "X(int) [" << ...
1
vote
2answers
116 views
Chaining calls to temporaries in C++
I have a class that does a transformation on a string, like so
class transer{
transer * parent;
protected:
virtual string inner(const string & s) = 0;
public:
string trans(const ...
0
votes
4answers
182 views
Can we inspect an object file for presence of temporaries introduced by C++ compiler?
Is there a way to inspect object file generated from code below ( file1.o ) for presence of compiler introduced temporary? What tools can we use to obtain such info from object files?
//file1.cpp
...