Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
5answers
834 views

Why do I need std::get_temporary_buffer?

For what purpose I should use std::get_temporary_buffer? Standard says the following: Obtains a pointer to storage sufficient to store up to n adjacent T objects. I thought that the buffer will ...
26
votes
8answers
4k views

How come a non-const reference cannot bind to a temporary object?

Why is it not allowed to get non-const reference to a temporary object, which function getx() returns? Clearly, this is prohibited by C++ Standard but I am interested in the purpose of such ...
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 ...
16
votes
4answers
343 views

Does “T const&t = C().a;” lengthen the lifetime of “a”?

The following scenario is given, to be interpreted as C++0x code: struct B { }; struct A { B b; }; int main() { B const& b = A().b; /* is the object still alive here? */ } Clang and GCC ...
15
votes
6answers
291 views

Why lifetime of temporary doesn't extend till lifetime of enclosing object?

I know that a temporary cannot be bound to a non-const reference, but it can be bound to const reference. That is, A & x = A(); //error const A & y = A(); //ok I also know that in the ...
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 ...
10
votes
5answers
268 views

prolonging the lifetime of temporaries

What is the design rationale behind allowing this const Foo& a = function_returning_Foo_by_value(); but not this Foo& a = function_returning_Foo_by_value(); ? What could possible go ...
10
votes
6answers
1k views

C++0x rvalue references and temporaries

(I asked a variation of this question on comp.std.c++ but didn't get an answer.) Why does the call to f(arg) in this code call the const ref overload of f? void f(const std::string &); //less ...
10
votes
5answers
736 views

Disallowing creation of the temporary objects

While debugging crash in a multithreaded application I finally located the problem in this statement: CSingleLock(&m_criticalSection, TRUE); Notice that it is creating an unnamed object of ...
9
votes
5answers
267 views

Is it possible to have source code that 'times out' (becomes invalid after a certain moment)?

We are currently busy migrating from Visual Studio 2005 to Visual Studio 2010 (using unmanaged C/C++). This means that about half of our developers are already using Visual Studio 2010, while the ...
7
votes
6answers
218 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, ...
7
votes
3answers
178 views

Temporary Object confusion

Have a look at this code snippet struct S{ int i; int j;}; int main() { assert(S().i == S().j) // is it guaranteed ? } Why?
7
votes
3answers
215 views

How to detect const reference to temporary issues at compile or runtime?

I've found recently that most of the errors in my C++ programs are of a form like the following example: #include <iostream> class Z { public: Z(int n) : n(n) {} int n; }; class Y { ...
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 ...
7
votes
3answers
330 views

Ways to accidentally create temporary objects in C++?

Years ago I believed that C was absolutely pure compared to C++ because the compiler couldn't generate any code that you couldn't predict. I now believe counter examples include the volatile keyword ...
6
votes
1answer
196 views

C++: non-temporary const reference

I need to write a class whose constructor takes a constant reference to a object and stores it locally. In order to avoid most common mistakes I can foresee, I'd like to only accept references to ...
6
votes
5answers
306 views

constant references with typedef and templates in c++

I heard the temporary objects can only be assigned to constant references. But this code gives error #include <iostream.h> template<class t> t const& check(){ return t(); ...
6
votes
1answer
159 views

Do rvalue references allow implicit conversions?

Is the following code legal? std::string&& x = "hello world"; g++ 4.5.0 compiles this code without any problems.
6
votes
1answer
3k views

Const reference to temporary

After reading this article on Herb Sutter's blog, I experimented a bit and ran into something that puzzles me. I am using Visual C++ 2005, but I would be surprised if this was implementation ...
5
votes
1answer
67 views

Will temporary object be deleted if there is no const reference to it?

Lets take a look to this two functions: std::string get_string() { std::string ret_value; // Calculate ret_value ... return ret_value; } void process_c_string(const char* s) { ...
5
votes
1answer
132 views

Why does writing to temporary stream fail?

Consider the following code: #include <sstream> #include <iostream> class Foo : public std::stringstream { public: ~Foo() { std::cout << str(); } }; int main() { Foo foo; ...
5
votes
6answers
497 views

Why is taking the address of a temporary illegal?

I know that the code written below is illegal void doSomething(std::string *s){} int main() { doSomething(&std::string("Hello World")); return 0; } The reason is that we are not ...
5
votes
1answer
149 views

rvalues and temporary objects in the FCD

It took me quite some time to understand the difference between an rvalue and a temporary object. But now the final committee draft states on page 75: An rvalue [...] is an xvalue, a temporary ...
5
votes
3answers
1k views

Does a const reference prolong the life of a temporary?

Why does this: #include <string> #include <iostream> using namespace std; class Sandbox { public: Sandbox(const string& n) : member(n) {} const string& member; }; int ...
5
votes
5answers
266 views

What's a good way of *temporarily* sorting a vector?

I've got a std::vector which I need to sort by selected algorithms for certain operations, but to maintain its original state (e.g. items ordered by when they were entered) the rest of the time. ...
5
votes
4answers
683 views

Should this C++ temporary binding to reference member be illegal?

My question (which will follow after this, sorry about the long intro, the question is down there in bold) is originally inspired by Item 23 in Herb Sutters Exceptional C++ where we find something ...
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
3answers
519 views

How to stop Selenium from creating temporary Firefox Profiles using Web Driver?

I am using Selenium Web Driver API with Java. Every time I want to debug my test cases, a temporary profile for Firefox is created in the temporary files directory. This is a headache in two ways. ...
4
votes
1answer
94 views

How to realize complex search filters in couchdb? Should I avoid temporary views?

I want to administrate my User-entities in a grid. I want to sort them and I want to have a search filter for each column. My dynamic generated temporary view works fine: function(doc){ ...
4
votes
1answer
120 views

Is it a bug that Microsoft VS C++ compiler can Initialize a reference from a temporary object [closed]

Possible Duplicate: Binding temporary to a lvalue reference With VS2008 C++ compiler, the codes are compiled without compile error. class A{}; int main(){ A& a_ref = A(); ...
4
votes
3answers
84 views

error in attaching temporary to a reference to const [closed]

Possible Duplicate: typedef and containers of const pointers Why is the code emitting an error? int main() { //test code typedef int& Ref_to_int; const Ref_to_int ref = 10; } ...
4
votes
7answers
676 views

Doubt on a C++ interview question

I have read Answers to C++ interview questions among which there is one that puzzles me: Q: When are temporary variables created by C++ compiler? A: Provided that function parameter is a ...
4
votes
6answers
248 views

Should I bring temporary variable declarations out of loops in C and C++?

Here is what I mean, suppose I have code like: for (int i = 0; i < 1000; i++) { char* ptr = something; /* ... use ptr here */ } It seems that char* ptr gets allocated every time ...
4
votes
3answers
200 views

Are sessions faster than querying the database?

So for example, the user is logging in, and the system is storing informations about them example: birth date, so is faster to get this information from the session, or to query the database for it? ...
4
votes
3answers
220 views

Destruction of string temporaries in thrown exceptions

Consider the following code: std::string my_error_string = "Some error message"; // ... throw std::runtime_error(std::string("Error: ") + my_error_string); The string passed to runtime_error is a ...
4
votes
9answers
333 views

PHP syntax to call methods on temporary objects

Is there a way to call a method on a temporary declared object without being forced to assign 1st the object to a variable? See below: class Test { private $i = 7; public function get() ...
4
votes
2answers
1k views

stringstream temporary ostream return problem

I'm creating a logger with the following sections: // #define LOG(x) // for release mode #define LOG(x) log(x) log(const string& str); log(const ostream& str); With the idea to do: ...
4
votes
6answers
842 views

C++ enum not properly recognized by compiler

Can anyone explain why the following code does not compile (on g++ (GCC) 3.2.3 20030502 (Red Hat Linux 3.2.3-49))? struct X { public: enum State { A, B, C }; X(State s) {} }; int main() { ...
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
6answers
322 views

Are temporary objects in C++ const indeed?

I always believed that temporary objects in C++ are automatically considered as const by the compiler. But recently I experienced that the following example of code: ...
3
votes
1answer
2k views

iOS: What's a safe way to create a temporary directory?

I read that NSTemporaryDirectory() returns a string for a temporary directory, but may also return nil. Is this the case in iOS? Has anyone experience with NSTemporaryDirectory() returning nil? When ...
3
votes
3answers
229 views

Question about using string::swap() with temporaries

The following segment demonstrates my issue: (compilation error on GCC) stringstream ss; string s; ss << "Hello"; // This fails: // s.swap(ss.str()); // This works: ss.str().swap(s); My ...
3
votes
3answers
254 views

const reference to temporary oddity

We all know that things like this are valid in c++: const T &x = T(); while: T &x = T(); is not. In a recent question the conversation lead to this rule. The OP had posted some code ...
3
votes
5answers
215 views

Question about exact time of destruction of temporaries in C++

is the following code safe (it works in DEBUG) : void takesPointer(const Type* v);//this function does read from v, it doesn't alter v in any way Type getValue(); ... ...
3
votes
5answers
892 views

Simple way to pass temporary struct by value in C++?

Suppose I want to pass a temporary object into a function. Is there a way to do that in 1 line of code vs. 2, with a struct? With a class, I can do: class_func(TestClass(5, 7)); given: class ...
2
votes
2answers
80 views

Substitute for MySQL's variables in PostgreSQL?

We often use quick one-off SQL files to insert or update data in an existing database. The SQL is usually written by a developer, tested on the development system, and then imported in the production ...
2
votes
1answer
68 views

HSQLDB clear table data after restart

I want to save some temporary data in memory, which should be removed after server shuts down. There is a temporary table in HSQLDB, but the data is removed immediately after transaction committed, ...
2
votes
4answers
116 views

Java reusing (static?) objects as temporary objects for performance

I need to call methods of a class with multiple methods very often in a simulation loop. Some of these methods need to access temporary objects for storing information in them. After leaving the ...
2
votes
6answers
529 views

C# - How to Delete temporary internet files

C:\Users\Username\AppData\Local\Microsoft\Windows\Temporary Internet Files I want to clear this folder completey. Folder is changing according to the installed windows. So it has to be dynamic. Thank ...
2
votes
2answers
39 views

Appropriate HTTP code for an unavailable download?

Which HTTP response code is appropriate for a download that is not available on the system but it will be available in the future. If a browser/download manager asks for a file that is not available ...

1 2 3