The temporary-objects tag has no wiki summary.
1
vote
3answers
24 views
How to swap more than two variables using temporary variables
I'm trying to figure out how to swap more than two variables around using a temp variable. There are 4 variables to be swapped, 1,2,3 and 4. Variable one is to swap with 2, 2 with 3, 3 with 4 and 4 ...
2
votes
2answers
58 views
C++ - base implementation called through reference of derived?
Consider following code (minimal version):
#include <iostream>
struct Base
{
virtual ~Base() {}
virtual void test() const { std::cout << "base"; }
};
struct Derived : public ...
1
vote
1answer
50 views
How do I treat JMS queue as a temporary storage?
I want to be able to pull and insert messages to and from a queue. Is it possible to leverage JMS features for this, or should I need create a custom data structure for this?
Please let me know if ...
8
votes
7answers
188 views
Performance of pIter != cont.end() in for loop
I was getting through "Exceptional C++" by Herb Sutter lately, and I have serious doubts about a particular recommendation he gives in Item 6 - Temporary Objects.
He offers to find unnecessary ...
4
votes
3answers
49 views
c++ problems with temporary ostream objects
I thought to transform this working code:
ofstream outfile("my_file.txt");
copy(v.begin(), v.end(), ostream_iterator<int>(outfile));
into this:
copy(v.begin(), v.end(), ...
0
votes
4answers
52 views
Confused about object and dereferenced pointer
I don't get the difference between passing the instance of an object to passing a dereferenced object. I have
class A
{
public:
A() {}
void m() {}
};
void method(A& a)
{
a.m();
}
int ...
19
votes
2answers
226 views
Lifetime extension and the conditional operator
local lvalue references-to-const and rvalue references can extend the lifetime of temporaries:
const std::string& a = std::string("hello");
std::string&& b = std::string("world");
Does ...
11
votes
4answers
288 views
Why not non-const reference to temporary objects? [duplicate]
Possible Duplicate:
Does a const reference prolong the life of a temporary?
prolonging the lifetime of temporaries
C++ allows assignment of temporary objects only to const reference. It ...
3
votes
8answers
178 views
Is return by value always const?
This code does not compile:
class C {};
void foo (C& c) {}
C bar() { return C(); }
int main()
{
foo(bar());
}
Compilation error (GCC 4.1.2) in line foo(bar()):
...
2
votes
2answers
312 views
const reference to temporary vs. return value optimization
I'm aware of the fact that assigning an rvalue to a const lvalue reference extends the temporaries lifetime until the end of the scope. However, it is not clear to me when to use this and when to rely ...
-2
votes
3answers
84 views
C++/V8 Convenient way to call a non-static function / creating temporary instance
I'm looking for a way to turn this (which works):
HandleScope scope;
scope.Close(stuff);
Into something like this:
(HandleScope scope).Close(stuff);
I tried with:
HandleScope::Close(stuff);
...
3
votes
1answer
158 views
Temporary object creation
Does anyone know if it is possible to enable any kind of logging on any C++
compliant compiler (Visual Studios, g++ etc) so that I can discover when temporary objects are created?
For example:
...
3
votes
3answers
244 views
C++ returning temporary objects confusion
I've got a rather basic C++ question, consider a function that takes some input parameters and creates a std::string that from those parameters like the one below:
std::string constructString( int ...
5
votes
2answers
118 views
What is the lifetime of a default argument temporary bound to a reference parameter?
I thought references only extend the lifetime of temporaries to the lifetime of the reference itself, but the output of the following snippet seems contradictory:
#include <iostream>
struct X{ ...
0
votes
1answer
145 views
Can I temporarily store a value in the Select Statement of SQL?
In my select statement, I have two returns that are calculations. It looks like this:
SELECT
a.FormRate AS 'F-Rate'
,a.LoI AS 'Liability'
,CAST((A.FormRate * a.LoI / 100) AS ...
2
votes
4answers
194 views
Keeping temporary objects on the register to avoid extra store/load in a virtual machine?
The title may be a little unclear, so here is a clarification:
The problem:
a = b + c * d;
which in my implementation is resolved to those two "instructions"
mul(c, d, temp)
add(b, temp, a)
I ...
5
votes
1answer
93 views
assigning a temp to a const ref member causes a segmentation fault
better explained by an example:
tok.h
#include <string>
static const char* defaultDelim = ".,;";
class Tokenizer {
public:
Tokenizer():
// 'delim' is the const ref member that is ...
2
votes
5answers
171 views
Is a function-returned temporary object not always r-value?
struct Test
{
Test()
{}
Test(const Test& other)
{
cout << "Copy" << endl;
}
Test(Test&& other)
{
cout << "Move" << ...
2
votes
1answer
89 views
assignment and reference initialization from a temporary
suppose i have the following:
boost::unordered_map< string , someValueType > map;
someValueType& value = map[ "key" ] = someValueType();
the last line contains:
a temporary constructed ...
1
vote
3answers
111 views
Subtle error when using temporaries to get iterators to a STL container: how to avoid it?
Let's consider this class:
class X {
std::map<uint32_t, uint32_t> _map;
public:
X() { /* Populate the map */ }
std::map<uint32_t, uint32_t> getTheMap() { return _map; }
};
...
0
votes
2answers
245 views
Pass temporary object with standard constructor
I'd like to pass a temporary object(std::string for example) to the constructor of my object:
class MyClass{
public:
MyClass(string a):
a(a)
{
}
string a;
};
int main(int ...
0
votes
2answers
81 views
Miscellaneous temporary object T() [closed]
Consider this code :
int main()
{
int i(6); //this will result in i==6,but consider next initializations
int j(int());
T * p2 = new T();
}
I find that the value of j is 1, but this ...
4
votes
2answers
106 views
When is a temporary used as an initializer for a named object destroyed?
In "The C++ Programming Language (3rd)" p.255:
A temporary can be used as an initializer for a const reference or a named object. For example:
void g(const string&, const string&);
void ...
5
votes
4answers
222 views
Where are temporary object stored?
IMO temporary objects are stored in dynamic (heap) memory, but I'm not sure. Can you please confirm or deny my thoughts?
5
votes
3answers
138 views
Are temporary references automatically cleared in Python?
This is basically a question about the lifetime of temporaries. If a function returns an object, but the reference is not assigned to a variable and is only used to call a method on the returned ...
3
votes
3answers
192 views
Is return value always a temporary?
This page says a strange thing :-
The temporaries are created only if your program does not copy the return value to an object and example given is
UDT Func1(); // Declare a function that returns a ...
1
vote
3answers
148 views
Temporary object not destroyed correctly?
See this code here:
class test
{
int n;
int *j;
public:
test(int m)
{
n = 12;
j = new int;
cin >> *j;
}
void show()
{
cout << ...
2
votes
2answers
589 views
vector<T>::swap and temporary object
Code goes below:
#include <vector>
int main()
{
vector<int> v1(5,1);
v1.swap(vector<int> ()); //try to swap v1 with a temporary vector object
}
The code above cannot ...
0
votes
4answers
315 views
How to allow non-const copy constructor for temporaries
How do I allow a class with a copy constructor that takes a non-const reference to be copy-constructed from temporaries?
The background is this:
I have a function that should return a list of ...
2
votes
1answer
197 views
Steps in Return Value Optimization [duplicate]
Possible Duplicate:
Understanding return value optimization and returning temporaries - C++
let Integer be some class with i as it's member.left and right are passed as arguments to a ...
0
votes
7answers
167 views
What constitutes of RValues?
RValues are things which are not maniputable regions of memory, so literals like integers are considered RValues.
Do constants constitute RValues? const int x = 0; is maniputable at least one time.
...
4
votes
4answers
296 views
static_cast and temporary creation (final edition)
Prerequisities:
To understand this question, please, read the following question and its answer at first:
Cast auto_ptr<Base> to auto_ptr<Derived>
At
Cast auto_ptr<Base> to ...
16
votes
2answers
243 views
Am I right in saying that const_cast followed by modification on a ref-to-const bound to a temporary is okay?
I would like to check my understanding and conclusions on this matter.
On IRC, it was asked:
Is it acceptable to const_cast a const reference that's bound to a temporary object?
Translating: ...
1
vote
6answers
104 views
Ignoring a return-by-reference result from a function
Suppose i have a function that returns an important result and several unimportant results. I declared it so that the unimportant results are returned by reference:
int CalculateStuff(int param1, int ...
2
votes
2answers
168 views
scala speed when using get() method on hash tables? (are temporary Option() objects generated?)
I am converting some code to Scala. It's code that sits in an inner loop with very large amounts of data so it needs to be fast, and it involves looking up keys in a hash table and computing ...
3
votes
1answer
185 views
A point From N3290 C++ Draft : 12.2 Section .5th point ,line 10. .Please explain this?
A point From N3290 C++ Draft : 12.2 Section .5th point ,line 10.
The second context is when a reference is bound to a temporary. The
temporary to which the reference is bound or the temporary ...
0
votes
3answers
1k views
How to store sentences in a temporary array in Java?
Currently, I am scraping out a chunk of data (paragraphs/strings) from a text file and writing it out to a new file. However, I am planning on adding some conditionals later and thus want to be able ...
1
vote
3answers
309 views
c++ Temporary object question
Is there a difference in the number of temp objects created between these 2 functions?
string foo1() {
return "";
}
string foo2() {
string s = "";
return s;
}
This is a homework ...
5
votes
1answer
473 views
Lifetime of temporary objects in SWIG's Python wrappers (?)
Edited 12 Feb
I've just recently come up with an odd crash using some SWIG-generated Python wrappers for some C++ classes. It seems that the combination of SWIG and Python together are somewhat ...
1
vote
4answers
280 views
What is stack-based reference?
What is stack-based references? How are they different from references that are members of objects? Does the Standard talk about these?
I came across this in an article written by Herb Sutter:
...
9
votes
6answers
302 views
prohibiting instantiation as a temporary object (C++)
I like using sentry classes in c++, but I seem to have a mental affliction that results in repeatedly writing bugs like the following:
{
MySentryClass(arg);
// ... other code
}
Needless to say, ...
6
votes
6answers
858 views
In an STL Map of structs, why does the “[ ]” operator cause the struct's dtor to be invoked 2 extra times?
I've created a simple test case exhibiting a strange behavior I've noticed in a larger code base I'm working on. This test case is below. I'm relying on the STL Map's "[ ]" operator to create a ...
0
votes
4answers
223 views
Chaining methods and temporary variables, please clarify
Greetings, everyone!
I have a class that receives a pointer to a "circle" (for example) and then adjusts its attributes via some "chaining" methods. Something like this:
class CCircleSetter
{
...
4
votes
1answer
501 views
sqlite: temporary table/view in a read-only db?
It seems that sqlite won't allow me to create a temporary view in a read-only db. Am I missing something? If it's TEMPORARY, I figured db connection mode shouldn't matter.
I even specified "PRAGMA ...
18
votes
5answers
639 views
Why is T() = T() allowed?
I believe the expression T() creates an rvalue (by the Standard). However, the following code compiles (at least on gcc4.0):
class T {};
int main()
{
T() = T();
}
I know technically this is ...
2
votes
2answers
105 views
Calling temporary object’s methods gives compiler error with older c library
I have a strange problem with my code when porting from a computer with glibc-2.5-25 (suse 10.2) to a computer with glibc-2.3.2-6 (suse 8.2). I use several method calls on temporary objects and they ...
1
vote
4answers
319 views
Why do C++ allow constant to be transformed to reference argument in another method?
void outputString(const string &ss) {
cout << "outputString(const string& ) " + ss << endl;
}
int main(void) {
outputString("constant tranformed to reference argument");
...
2
votes
4answers
1k views
C++ destruction of temporary object in an expression
Given the following code:
#include <iostream>
struct implicit_t
{
implicit_t(int x) :
x_m(x)
{
std::cout << "ctor" << std::endl;
}
~implicit_t()
...
7
votes
5answers
4k views
Store in Session Data vs store in Sql Database for temporary data
I am wondering which is more efficient, to store temporary data (related to that session) in a session using the $_SESSION variable in PHP or store and retrieve from an SQL database?
Thank you for ...

