473,385 Members | 1,396 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,385 software developers and data experts.

dangling references?

Hello Experts!

I'm reading in a book about C++ and the book says common errors is
"A function should not return a constant references to its parameter passed
by constant references"
Why?
Here I have written a method that has exactly this which is the parameter is
passed by constant references and I return constant references what is it
that can cause common error by writng in this way.

main()
{
int tal = 9;
Test t;
t.foo(tal);
}

class Test
{
const int& foo(const int& i)
{
return i;
}
};

Many thanks
//Tony
Jul 23 '05 #1
6 1942
Tony Johansson wrote:
Hello Experts!

I'm reading in a book about C++ and the book says common errors is
"A function should not return a constant references to its parameter passed
by constant references"
Why?


const int& f(const int& i)
{
return i;
}

void bogus()
{
const int& j = f(int());
// j is now dangling
}

The danger is that if you call f with a temporary, as the code above
does, it returns a reference to that temporary, which becomes invalid
when the temporary goes away. That danger doesn't mean you shouldn't do
it, but that if you do, you have to be sure of how you use it.

--

Pete Becker
Dinkumware, Ltd. (http://www.dinkumware.com)
Jul 23 '05 #2
Tony Johansson wrote:
I'm reading in a book about C++
Could you please cite the book?
and the book says that a common error is

"A function should not return a constant references
to its parameter passed by constant references"
Can you please cite the passage which contains the above quote?
Can you tell us the name of the author?
Why? Here I have written a method that has exactly this
[where] the parameter is passed by constant reference
and I return constant a reference.
What is it that can cause a common error by writng in this way?
cat main.cc #include <iostream>

class Test {
public:
const int& foo(const int& i) const {
return i;
}
};

int main(int argc, char* argv[]) {
int tal = 9;
Test t;
std::cout << "t.foo(" << tal << ") = "
<< t.foo(tal) << std::endl;
return 0;
}
g++ -Wall -ansi -pedantic -O2 -o main main.cc
./main

t.foo(9) = 9

It works just fine for me.

My guess is that you have misread the author
and now you are confused.
Jul 23 '05 #3
* Tony Johansson:

I'm reading in a book about C++ and the book says common errors is
"A function should not return a constant references to its parameter passed
by constant references"
Why?
Because the ref-to-const parameter means you can (easily) pass in a temporary,
e.g. the literal number 42, and that temporary will not exist any longer when
evaluation of the expression that the function call occurs in is finished.
Actually it may be destroyed even earlier, as soon as the function returns,
because §5.2.2/4 says "The lifetime of a parameter ends when the function in
which it is defined returns". However, §12.2/5 says "A temporary bound to a
reference parameter in a function call persists until the completion of the
full expression containing the call." Take your pick.

Thus, for a temporary as argument, the function result can only be safely
used inside the expression the function call occurs in. And even there it
might not be safe to use it. Depending on how you read the Holy Standard.

Personally I think §12.2/5 is the most specific and therefore applies, and a
fair amount of code would, I believe, be broken if §5.2.2/4 is the "winner".

Here I have written a method that has exactly this which is the parameter is
passed by constant references and I return constant references what is it
that can cause common error by writng in this way.

main()
'main' must have 'int' result type; this should not compile
(unfortunately a certain compiler from a large company allows it).

{
int tal = 9;
Test t;
Class 'Test' is not known at this point.

This should not compile.

I don't know any compiler that accepts it.

t.foo(tal);
Any real test would have to use the result.

However, that only tells you what a specific compiler does.

It doesn't tell you whether it's behavior mandated by the standard.

}

class Test
{
const int& foo(const int& i)
{
return i;
}
};


Hth.

--
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?
Jul 23 '05 #4
On Wed, 06 Apr 2005 20:59:13 +0000, Tony Johansson wrote:
Hello Experts!

I'm reading in a book about C++ and the book says common errors is
"A function should not return a constant references to its parameter passed
by constant references"
Why?
Here I have written a method that has exactly this which is the parameter is
passed by constant references and I return constant references what is it
that can cause common error by writng in this way.

main()
{
int tal = 9;
Test t;
t.foo(tal);
}

class Test
{
const int& foo(const int& i)
{
return i;
}
};

Many thanks
//Tony


You can bind a temporary to a const reference. What if you did:

t.foo(9);

Here's another example:

#include <iostream>

class A
{
public:
A() { i = 3; }
~A() { i = 5; }
int GetI() const { return i; }
private:
int i;
};

const A& foo(const A& a)
{
return a;
}

int main()
{
const A& a = foo(A());
std::cout << a.GetI() << std::endl;
}

gcc gives "5" (though I suspect we've entered into undefined behavior at
this point).

- Jay
Jul 23 '05 #5

Alf P. Steinbach wrote:
* Tony Johansson:

I'm reading in a book about C++ and the book says common errors is
"A function should not return a constant references to its parameter passed by constant references"
Why?
Because the ref-to-const parameter means you can (easily) pass in a

temporary, e.g. the literal number 42, and that temporary will not exist any longer when evaluation of the expression that the function call occurs in is finished. Actually it may be destroyed even earlier, as soon as the function returns, because §5.2.2/4 says "The lifetime of a parameter ends when the function in which it is defined returns".


No, 5.2.2/4 talks about the reference parameter and not the object
to which the reference is bound. Compare:

void foo() {
int i = 0;
{
int const& ri = i;
}
}
The lifetime of ri ends at the first }, but the lifetime of i ends
at the second }.
The fact that the reference is bound to a temporary doesn't matter
here. The only case in which a temporary is destroyed due to the
end of the lifetime of a reference is when the temporary would have
been destoyed earlier in the absence of the reference. I.e.
references can extend lifetimes but not shorten them.

Regards,
Michiel Salters

Jul 23 '05 #6
* msalters:

Alf P. Steinbach wrote:
* Tony Johansson:

I'm reading in a book about C++ and the book says common errors is
"A function should not return a constant references to its parameter passed by constant references"
Why?


Because the ref-to-const parameter means you can (easily) pass in a

temporary,
e.g. the literal number 42, and that temporary will not exist any

longer when
evaluation of the expression that the function call occurs in is

finished.
Actually it may be destroyed even earlier, as soon as the function

returns,
because =A75.2.2/4 says "The lifetime of a parameter ends when the

function in
which it is defined returns".


No, 5.2.2/4 talks about the reference parameter and not the object
to which the reference is bound. Compare:

void foo() {
int i =3D 0;
{
int const& ri =3D i;
}
}
The lifetime of ri ends at the first }, but the lifetime of i ends
at the second }.


On reflection I think you're right.

Which means my tentative conclusion in the posting the above was a follow-up
to was right, for the wrong reasons.

However, I also think the standard is unclear & even misleading here.

--
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?
Jul 23 '05 #7

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

Similar topics

13
by: Aravind | last post by:
I would like to know in what manner dangling pointers affect the security of a application developed using C++.What are the loopholes that are created by dangling pointers and how they could be...
6
by: Matthias Kaeppler | last post by:
Hi, I have a question regarding references, and their chance to "dangle" (if that's possible at all): Say I have a collection ob objects, and I take a reference to one of them. Now I sort...
20
by: __PPS__ | last post by:
Hello everybody in a quiz I had a question about dangling pointer: "What a dangling pointer is and the danger of using it" My answer was: "dangling pointer is a pointer that points to some...
5
by: Richard | last post by:
My experience has always been that you're SOL when trying to safely detect and stop references to dangling memory (non-null pointers to free'ed blocks) at runtime (C99, Linux). Maybe somebody...
1
by: sekhar_ps | last post by:
if we store some value at the place in memory which void pointer references then we increment void pointer this leads to dangling pointer?can any one explain whats the reasons for dangling pointer
10
by: Belebele | last post by:
Suppose that I have a method that returns references to "elements" in an iterator, and a method to advance the iterator: class Element { /* ... */ }; class Iterator { public: Element&...
1
by: sridhard2406 | last post by:
Hi All, I have a doubt on undrestanding Dangling pointers.Below I mentioned sample code. please let me know, my view on Dangling pointers is correct or not? main( ) ...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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...

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.