473,395 Members | 1,681 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

Weird return statement

Hello all,

I ve come across the following code fragment and I was wondering why is the
copy ctr called on return (rather than just returning the string statement
obj.

TIA

string PublishedProductsRepo :: CreateStatement() const {
string statement;

statement ="SELECT DISTINCT "
"* "
"FROM "
"map";
return string(statement); }
Mar 26 '06 #1
13 1836

jimjim skrev:
Hello all,

I ve come across the following code fragment and I was wondering why is the
copy ctr called on return (rather than just returning the string statement
obj.
The code below does not make much sense. I would have written it
simply:

string PublishedProductsRepo :: CreateStatement() const {
return "SELECT DISTINCT "
"* "
"FROM "
"map";
}

/Peter
TIA

string PublishedProductsRepo :: CreateStatement() const {
string statement;

statement ="SELECT DISTINCT "
"* "
"FROM "
"map";
return string(statement); }


Mar 26 '06 #2
* jimjim:

I ve come across the following code fragment and I was wondering why is the
copy ctr called on return (rather than just returning the string statement
obj.

string PublishedProductsRepo :: CreateStatement() const {
string statement;

statement ="SELECT DISTINCT "
"* "
"FROM "
"map";
return string(statement); }


Whether the copy constructor is called depends on your compiler and the
context of the CreateStatement call.

There is much that is unnecessary in the code, but it doesn't affect
copy constructor calls. What's important re copy constructor calls is
your compiler's optimizations.

A straightforward coding of this function is

std::string PublishedProductsRepo::CreateStatement() const
{
return "SELECT DISTINCT * FROM map";
}

Note the qualification with "std::".

If this inline function definition is in a header file, which is likely,
the lack of such qualification in the original code indicates there is a
"using namespace std;" or "using std::string;" in the header file, which
in turn indicates an incompetent programmer. In other words, if those
reasonable assumptions hold, then this is not code to learn from.
Rather, it's then code from which you can learn how to /not/ do things.

For example:

* Don't ever place "using namespace std;" in a header file.

* Don't be clever when there is no need.

* Preferentially don't name a function "ComputeCosine" when "cos" will
do: name value-producing functions for what they produce, not how.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Mar 26 '06 #3
In article <D_******************@text.news.blueyonder.co.uk >,
"jimjim" <ne*****@blueyonder.co.uk> wrote:
I ve come across the following code fragment and I was wondering why is the
copy ctr called on return (rather than just returning the string statement
obj.

TIA

string PublishedProductsRepo :: CreateStatement() const {
string statement;

statement ="SELECT DISTINCT "
"* "
"FROM "
"map";
return string(statement); }


The person who wrote the code was probably worried because 'statement'
is a temporary and he wasn't sure if he was returning a temporary or
not. IE he didn't know the language very well.

Or maybe he was intentionally trying to obfuscate the code?
--
Magic depends on tradition and belief. It does not welcome observation,
nor does it profit by experiment. On the other hand, science is based
on experience; it is open to correction by observation and experiment.
Mar 26 '06 #4
Daniel T. wrote:
The person who wrote the code was probably worried because 'statement'
is a temporary and he wasn't sure if he was returning a temporary or
not. IE he didn't know the language very well.
You meant: ...probably worried because 'statement' is a local and he wasn't
sure if he was returning a reference to a local. So he returned a copy of a
temporary instead.
Or maybe he was intentionally trying to obfuscate the code?


The OP is advised to learn better C++ than that example before further
improvements. This will probably be tricky, because if the code has many
more examples like this then some of them might rely on undefined behavior.

--
Phlip
http://www.greencheese.org/ZeekLand <-- NOT a blog!!!
Mar 26 '06 #5
string PublishedProductsRepo :: CreateStatement() const {
string statement;

statement ="SELECT DISTINCT "
"* "
"FROM "
"map";
return string(statement); }


Looks like the coder isn't very proficient. Here's a few bad things:

1) The "statement" object is default constructed, and the an assignment
is performed. This is inefficent -- it should have just been a
construction:

string statement("bla bla");
2) There's no point in creating that nameless temporary in the "return"
statement. It could simply be:

return statement;
3) A proficient programmer would probably write:

string PublishedProductsRepo :: CreateStatement() const
{
return
"SELECT DISTINCT "
"* "
"FROM "
"map";
}
-Tomás
Mar 26 '06 #6
On Sun, 26 Mar 2006 18:20:50 +0200, "Alf P. Steinbach"
<al***@start.no> wrote:
Whether the copy constructor is called depends on your compiler and the
context of the CreateStatement call.


Whether the copy constructor is elided depends on your compiler, your
used compliler switches and the context of the CreateStatement call.
In general, it's not recommendable to make your code dependent on
language hacks like RVO.

Best regards,
Roland Pibinger
Mar 26 '06 #7
On Sun, 26 Mar 2006 18:27:14 GMT, "Tomás" <NU**@NULL.NULL> wrote:
3) A proficient programmer would probably write:

string PublishedProductsRepo :: CreateStatement() const
{
return
"SELECT DISTINCT "
"* "
"FROM "
"map";
}


That should be:

std::string PublishedProductsRepo :: CreateStatement() const
{
return std::string(
"SELECT DISTINCT "
"* "
"FROM "
"map");
}

--
Bob Hairgrove
No**********@Home.com
Mar 26 '06 #8
* Roland Pibinger:
On Sun, 26 Mar 2006 18:20:50 +0200, "Alf P. Steinbach"
<al***@start.no> wrote:
Whether the copy constructor is called depends on your compiler and the
context of the CreateStatement call.
Whether the copy constructor is elided depends on your compiler, your
used compliler switches and the context of the CreateStatement call.


Yes, I think you have understood that correctly.

In general, it's not recommendable to make your code dependent on
language hacks like RVO.


But not this.

On the contrary, it's absolutely not a good idea to resort to premature
optimization (Google for "premature optimization"): it wastes programmer
time and may end up making your program less efficient rather than more.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Mar 26 '06 #9
Tomás wrote:
1) The "statement" object is default constructed, and the an assignment
is performed. This is inefficent -- it should have just been a
construction:

string statement("bla bla");
The compiler is required to directly call the constructor, even if = is
used.
2) There's no point in creating that nameless temporary in the "return"
statement. It could simply be:

return statement;
I do know that Return Value Optimization could make one of the strings
inside the function become an alias for the final string outside the
function. But I don't know how aggressive that rule is. Suppose the copy
constructor for std::string had a side effect that you could count. RVO will
make one of those side effects go away. (That's why it's a permitted
optimization and defined as "lossy"; so programmers will know better than to
depend on the number of side-effects from such constructors.)

Will RVO make all of this go away?

return string(string(string(string(string(string(statemen t))))));
3) A proficient programmer would probably write:

string PublishedProductsRepo :: CreateStatement() const
{
return
"SELECT DISTINCT "
"* "
"FROM "
"map";
}


And the next level of proficiency avoids this AntiPattern:

http://c2.com/cgi/wiki?PerniciousIngrownSql

--
Phlip
http://www.greencheese.org/ZeekLand <-- NOT a blog!!!
Mar 26 '06 #10
* Bob Hairgrove:
On Sun, 26 Mar 2006 18:27:14 GMT, "Tomás" <NU**@NULL.NULL> wrote:
3) A proficient programmer would probably write:

string PublishedProductsRepo :: CreateStatement() const
{
return
"SELECT DISTINCT "
"* "
"FROM "
"map";
}


That should be:

std::string PublishedProductsRepo :: CreateStatement() const
{
return std::string(
"SELECT DISTINCT "
"* "
"FROM "
"map");
}


No, you don't need the explicit constructor call, because that
constructor is not 'explicit'.

For e.g. a std::auto_ptr you would need the explicit construction.

For std::string you don't.

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Mar 26 '06 #11
On Sun, 26 Mar 2006 22:44:05 +0200, "Alf P. Steinbach"
<al***@start.no> wrote:
* Roland Pibinger:
In general, it's not recommendable to make your code dependent on
language hacks like RVO.


But not this.

On the contrary, it's absolutely not a good idea to resort to premature
optimization (Google for "premature optimization"): it wastes programmer
time and may end up making your program less efficient rather than more.


In this case RVO is the immature optimization :-)
I don't recommend any optimization at all.

Best regards.
Roland Pibinger
Mar 26 '06 #12
Bob Hairgrove wrote:
That should be:

std::string PublishedProductsRepo :: CreateStatement() const
{
return std::string(
"SELECT DISTINCT "
"* "
"FROM "
"map");
}


Why?

--
Phlip
http://www.greencheese.org/ZeekLand <-- NOT a blog!!!
Mar 26 '06 #13
* Phlip:
Tomás wrote:
1) The "statement" object is default constructed, and the an assignment
is performed. This is inefficent -- it should have just been a
construction:

string statement("bla bla");
The compiler is required to directly call the constructor, even if = is
used.


Tomás was referring to the assignment operator call, I think.

2) There's no point in creating that nameless temporary in the "return"
statement. It could simply be:

return statement;


I do know that Return Value Optimization could make one of the strings
inside the function become an alias for the final string outside the
function. But I don't know how aggressive that rule is.


Not very, it applies to temporaries and returning a named local
variable. But that's enough here, and what kicks in here anyway is the
"as if" rule. std::string is a class known by the compiler, and it can
optimize as it wants to, regardless of the RVO rule.

Suppose the copy
constructor for std::string had a side effect that you could count. RVO will
make one of those side effects go away. (That's why it's a permitted
optimization and defined as "lossy"; so programmers will know better than to
depend on the number of side-effects from such constructors.)

Will RVO make all of this go away?

return string(string(string(string(string(string(statemen t))))));


RVO /can/ make all of that go away, "whenever a temporary class object
is copied using a copy constructor".

Whether it will or not depends on the compiler etc.
--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Mar 26 '06 #14

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

Similar topics

11
by: HelLind | last post by:
Hello people, I am having a weird error and don't know what term to search in google. Sorry to bother. There is data in my field "M_BIO" When I run this code...
2
by: alice | last post by:
Hi, When I compiles the following program with g++, it gives the following output: # g++ -o list list.C list.C: In function `int main()': list.C:116: jump to case label list.C:110: crosses...
5
by: crunix | last post by:
Hello. I have developed a medical application with php 4 linked to IBM DB2 database. The database connection is right and i can access data with no problem...but sometimes when i reload the...
8
by: G Patel | last post by:
Can people please comment on the layout/style of my problem? The major issue I had was the layout. I ended up having to put a relatively large switch statement, inside an if statement, which is...
3
by: Val | last post by:
In vc7 (studio 2002), when I try to debug the first "if" statement, the IDE jumps to the next valid line and evaluates it even if the if-statement is false. What is going on? if(...
4
by: Peter Afonin | last post by:
Hello, I have a weirdest issue I've ever had. I have a function that enters some data into the Oracle table and returns the sequential row number for the new record (autonumber): Private...
5
by: Frederick Dean | last post by:
Hi,guys! I'm reading Stephen Dewhurst's book "C++ Gotchas"£¬in gothca #7, I meet a weird case: bool Postorder::next() { switch (pc) case START: while (true) if (!child()) { pc = LEAF; return...
5
by: Pupeno | last post by:
Hello, I am experiencing a weird behavior that is driving me crazy. I have module called Sensors containing, among other things: class Manager: def getStatus(self): print "getStatus(self=%s)"...
11
by: ssecorp | last post by:
I am never redefining the or reassigning the list when using validate but since it spits the modified list back out that somehow means that the modified list is part of the environment and not the...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.