472,352 Members | 1,485 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,352 software developers and data experts.

lifetime of temporary object from function return & optimization

pt
Hallo,

i wonder how it is going to be of this code below regarding of the
return of temporary object.

Prototypes:
===========

bool Activation(TCHAR *c);
std::basic_string<TCHAR> GetFile();

Func Call:
==========

Activation((TCHAR *) myObj.GetFile().c_str());
Summary of the Question:
========================
It works fine under EVC4 & MSVC6. However, I dont know if it is
portable to g++
or other compiler.

- Is there any answer to the lifetime of temporary object for
all compilers? Does it also work fine under other compilers?

- In cosidering of effiency of the code. Is there any better solution
to just create a temporary obj like this ?

TCHAR* temp = myObj.GetFile().c_str();
Activation(temp);

- What is the lifetime of the return value from myObj.GetFile().c_str()
before Activation(..) is called?
Thank you very much for any suggestion.

regards,
pattreeya
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]

Jul 23 '05 #1
8 2835
pt wrote:
i wonder how it is going to be of this code below regarding of the
return of temporary object.

Prototypes:
===========

bool Activation(TCHAR *c);
std::basic_string<TCHAR> GetFile();

Func Call:
==========

Activation((TCHAR *) myObj.GetFile().c_str());
This is a VERY BAD IDEA(tm). "c_str()" returns a pointer to a _const_
TCHAR, casting away constness like this is utterly dangerous.
Summary of the Question:
========================
It works fine under EVC4 & MSVC6.
"Works" is a very subjective statement, isn't it?
However, I dont know if it is
portable to g++
or other compiler.
It looks portable to me, but since I don't know what 'Activation' does
to the pointer passed to it, there is no way to tell if there are any
ill effects (like undefined behaviour).
- Is there any answer to the lifetime of temporary object for
all compilers? Does it also work fine under other compilers?
A temporary is destroyed as the last step of evaluating the full
expression during evaluation of which the temporary was created. In
your case, since 'GetFile' returns an object, and that function call
is a sub-expression of an expression used to initialise the argument
of the 'Activation' function call, the temporary should survive until
'Activation' returns.

Compilers are many, some of them implement the Standard requirements
closer to the ideal than others. The lifetime of a temporary is one
of the issues that most compilers implement correctly, AFAICT.
- In cosidering of effiency of the code. Is there any better solution
to just create a temporary obj like this ?

TCHAR* temp = myObj.GetFile().c_str();
That should not compile. 'c_str()' returns 'TCHAR const*' and you are
not allowed to convert it to 'TCHAR*' without a const_cast. And I urge
you not to, anyway.
Activation(temp);
No, this is definitely NOT going to work. 'temp' is a dangling pointer.
The temporary returned by 'GetFile' will be disposed of at the end of
initialising 'temp', which will *immediately* make it invalid.
- What is the lifetime of the return value from
myObj.GetFile().c_str() before Activation(..) is called?


'c_str()' does not create a separate temporary to speak of. It does
however, create a pointer to the data in the other temporary, the
'basic_string<TCHAR>' object. How it does that is implemenation-
defined. The pointer remains valid until the next call to a non-const
member function for the same object (destructor is included).

V
Jul 23 '05 #2
Victor Bazarov wrote:
pt wrote:
i wonder how it is going to be of this code below regarding of the
return of temporary object.

[snip]

V


Ok, I give up.

What is a "TCHAR"?

Is code using "TCHAR" platform-portable?

Larry
Jul 23 '05 #3
Larry I Smith wrote:
Victor Bazarov wrote:
pt wrote:
i wonder how it is going to be of this code below regarding of the
return of temporary object.

[snip]

V

Ok, I give up.

What is a "TCHAR"?

Is code using "TCHAR" platform-portable?

Larry


It is a preprocessor macro defined in the Win32 API headers (i.e.,
non-standard, non-portable) that evalutes to either char or wchar
depending on whether UNICODE is defined. Nearly all of the Win32 API
functions that take strings as parameters are actually preprocessor
macros that evaluate to a FunctionNameA or FunctionNameW version, which
take char or wchar parameters, respectively.
Jul 23 '05 #4
Larry I Smith wrote:
Victor Bazarov wrote:
pt wrote:
i wonder how it is going to be of this code below regarding of the
return of temporary object.

[snip]

V


Ok, I give up.

What is a "TCHAR"?


It matters not to the question at hand.
Is code using "TCHAR" platform-portable?


As much as you want to make it. I presume somewhere in the OP's code
there is a line like

typedef wchar_t TCHAR;
or
typedef char TCHAR;

depending on some other circumstances (macros/OS settings/whatever).

V
Jul 23 '05 #5
Victor Bazarov wrote:
Larry I Smith wrote:
Victor Bazarov wrote:
pt wrote:
i wonder how it is going to be of this code below regarding of the
return of temporary object.

[snip]
V

Ok, I give up.

What is a "TCHAR"?


It matters not to the question at hand.
Is code using "TCHAR" platform-portable?


As much as you want to make it. I presume somewhere in the OP's code
there is a line like

typedef wchar_t TCHAR;
or
typedef char TCHAR;

depending on some other circumstances (macros/OS settings/whatever).

V


Ok, Alan answered it in his post - It's WIN32 API specific.

So, code using TCHAR is not portable.

Thanks Alan.

Regards,
Larry
Jul 23 '05 #6
pt
Thanks a lot for all of the comments.

in the header file,typedef char TCHAR; so it should be portable ...

Well, regarding the temporary object, can we say that its lifetime of
return of GetFile() is existing until the end of call of
Activation(..), so to say at the end of statement?

Jul 23 '05 #7
Hi,
The return value of std::basic_string<TCHAR>::c_str() is valid until
you call non-constant member function of this object.
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]

Jul 23 '05 #8
A temporary object lives till the end of whole expression.
Thus,
Activation( myObj.GetFile().c_str() );
is correct, while
char* temp = myObj.GetFile().c_str();
will be invalidated immediately after ';' and should not be used in
Activation(temp);

By the way,

If you have to cast to (TCHAR*) due to removing constness, please
verify that you don't modify the paramenter string in Activation(). If
no, you'd better declare it as
bool Activation(const TCHAR *c);
or (same as above)
bool Activation(LPCTSTR c);

Also note that, if TCHAR != char (being compiled for Unicode), c-style
casting from const char* -> const TCHAR* is meaningless and harmful.
You should use
either basic_string<TCHAR>
or convert types with special purpose macros - A2T (see
http://msdn.microsoft.com/library/en...ion_Macros.asp
for details)
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]

Jul 23 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Jason Heyes | last post by:
I am interested in the lifetime of a function argument in two cases. They are: 1. void foo(Bar bar); 2. void foo(const Bar &bar); In each...
15
by: Gabor Drasny | last post by:
Hi all, Could anyone tell me if the following code is guaranteed to work or not? #include <string> #include <iostream> int main() { const...
3
by: Bob Altman | last post by:
Hi all, I have a basic question regarding holding references to objects in unmanaged C++. Suppose my unmanaged C++ class has a method that...
14
by: Frederick Gotham | last post by:
There is a common misconception, (one which I myself also held at one point), that a const reference can "extend the lifetime of a temporary"....
17
by: Klaas Vantournhout | last post by:
Hi all, I was wondering if it is possible if you can check in a function if one of the arguments is temporary. What I mean is the following. ...
3
by: nagashre | last post by:
class A { public: A():a(0), b(0){} handleMyMsg( char* aa, char*bb); private: processMessage();
3
by: mario semo | last post by:
Hello, What does the C++ Norm says about the lifetime of compiler generated temporary variables? #include <stdio.h> class BaseRef {...
6
by: better_cs_now | last post by:
Hello all, class Foo {/* Details don't matter */}; class Bar { public: Bar(): m_Foo(/* Construct a Foo however it wants to be constructed...
5
by: Juha Nieminen | last post by:
Let's assume we have a class like this: //--------------------------------------------------------- #include <iostream> class MyClass {...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...
0
BLUEPANDA
by: BLUEPANDA | last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS...
0
by: Rahul1995seven | last post by:
Introduction: In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.