Tagged Questions

24
votes
3answers
10k views

What is the lifetime of a static variable in a C++ function?

If a variable is declared as static in a function's scope it is only initialized once and retains its value between function calls, we all know that but what exactly is its lifetime? When do its ...
17
votes
1answer
249 views

When an array is created by a subexpression, what happens with the temporaries therein?

I was reading these two paragraphs of the FDIS (12.2p{4,5}): There are two contexts in which temporaries are destroyed at a different point than the end of the full-expression. The first context ...
15
votes
2answers
474 views

Lifetime of temporaries

The following code works fine, but why is this correct code? Why is the "c_str()" pointer of the temporary returned by foo() valid? I thought, that this temporary is already destroyed when bar() is ...
11
votes
2answers
312 views

Lifetime of temporary bound to aggregate initialized struct member

Given the following code: class foo { }; class bar: public foo { public: ~bar() { printf("~bar()\n"); } }; class zab: public foo { public: ~zab() { printf("~zab()\n"); } }; struct ...
9
votes
6answers
154 views

What is the “right” way to avoid Aliasing (e.g. when adding an element of a container to itself) in C++?

std::vector<int> a; a.push_back(1); a.push_back(a[0]); I just learned that the code above can be very dangerous. (If it's not obvious why, you're not alone... it wasn't obvious to me either.) ...
9
votes
6answers
1k views

C++ constant reference lifetime

I have code that looks like this: class T {}; class container { const T &first, T &second; container(const T&first, const T & second); }; class adapter : T {}; ...
7
votes
5answers
284 views

Do temporary objects have scope?

Names have scope (a compile-time property), while objects have lifetimes (a runtime property). Right? I often see people talking about temporary objects "going out of scope". But since a temporary ...
6
votes
5answers
1k views

What is the lifetime of class static variables in C++?

If I have a class called Test :: class Test { static std::vector<int> staticVector; }; when does staticVector get constructed and when does it get destructed ? Is it with the ...
4
votes
2answers
141 views

Passing std::forward_as_tuple() result to multiple functions that may move from that object's rvalue-reference members?

Edit: I think the most likely use case for what I'm asking about, is when creating a function that receives a tuple of rvalue-references from std::forward_as_tuple(). The reason this question came to ...
4
votes
2answers
71 views

What is the lifetime of the class data member which const reference to a rvalue?

Generally this discussion is up to the local function variable only: void foo (const int &i) { // use i till foo() ends } foo(3); But, does this rule applies to the class member also ? ...
3
votes
2answers
147 views

Full-expression boundaries and lifetime of temporaries [closed]

Possible Duplicate: C++: Life span of temporary arguments? It is said that temporary variables are destroyed as the last step in evaluating the full-expression, e.g. bar( foo().c_str() ); ...
3
votes
1answer
176 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 ...
2
votes
5answers
229 views

C++: constant reference to temporary

There are several questions about lifetime of constant reference on SO, but still I don't get it. Is this piece of code valid? struct S { const int &ref; S( const int &x ) : ref(x) { ...
2
votes
2answers
441 views

Can I delete OpenGL vertex arrays after calling glDrawArrays?

I am generating the vertex arrays on the fly on each render and I want to delete the arrays afterwards. Does glDrawArrays immediately copy the vertex arrays to the server? Hence is it safe to delete ...
2
votes
1answer
254 views

Lifetime of a thrown object caught by reference

The C++ Standard, paragraph 15.1.4 sais: The memory for the temporary copy of the exception being thrown is allocated in an unspecified way, except as noted in 3.7.3.1. The temporary persists as ...
1
vote
2answers
68 views

Lifetime issues of QString

I have a class like this: class SomeClass { public: QString data; SomeClass(const QString &); }; and in the .cpp file: SomeClass::SomeClass(const QString &_data) { ...
1
vote
4answers
158 views

Lifetime of implicitly casted temporaries

I have seen this question. It seems that regardless of the cast, the temporary object(s) will "survive" until the fullexpression evaluated. But in the following scenario: template<class T> ...
0
votes
2answers
156 views

Is life-time of local variables in a function, necessarily equal to life-time of that function's execution? [closed]

Possible Duplicate: how does an optimizing c++ compiler reuse stack slot of a function? do c++ compilers have their ways to determine the time at which, life-time of each local variable in ...
0
votes
2answers
113 views

C++ basic pointer question

I have some shared pointer shared_ptr<T> pointer1(new T(1));. Now, in some other part of code I have an explicit copy of pointer2 (guess it would be stored in a std::map or some other ...