The temporary-objects tag has no wiki summary.
18
votes
5answers
598 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 ...
16
votes
2answers
189 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: ...
7
votes
6answers
222 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, ...
5
votes
4answers
87 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
77 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 ...
5
votes
6answers
352 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 ...
5
votes
7answers
2k 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 ...
4
votes
4answers
138 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 ...
3
votes
2answers
81 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 ...
3
votes
3answers
116 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 ...
3
votes
1answer
143 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 ...
3
votes
1answer
183 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 ...
3
votes
1answer
251 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 ...
2
votes
1answer
101 views
Steps in Return Value Optimization [closed]
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 ...
2
votes
2answers
101 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 ...
1
vote
3answers
82 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 << ...
1
vote
2answers
73 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 ...
1
vote
6answers
69 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 ...
1
vote
3answers
156 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 ...
1
vote
4answers
180 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:
...
1
vote
2answers
81 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
287 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");
...
0
votes
2answers
50 views
Miscellaneous temporary object T()
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 ...
0
votes
4answers
55 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 ...
0
votes
7answers
122 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.
...
0
votes
3answers
238 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 ...
0
votes
4answers
144 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
{
...
0
votes
4answers
644 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()
...