x******a 发帖数: 6336 | 1 page 248,never return a reference to a local object一节.
这里的local object是指ret吧? 为什么叫returning reference to a local object?而
不是return a local object to...谢谢.
// Disaster: Function returns a reference to a local object
const string &manip(const string& s)
{
string ret = s;
// transform ret in some way
return ret; // Wrong: Returning reference to a local object!
} |
r****t 发帖数: 10904 | 2 函数原型声明返回 reference
?而
【在 x******a 的大作中提到】 : page 248,never return a reference to a local object一节. : 这里的local object是指ret吧? 为什么叫returning reference to a local object?而 : 不是return a local object to...谢谢. : // Disaster: Function returns a reference to a local object : const string &manip(const string& s) : { : string ret = s; : // transform ret in some way : return ret; // Wrong: Returning reference to a local object! : }
|
x******a 发帖数: 6336 | 3 thank you
but why is it "to" a local object not "from" a local object
【在 r****t 的大作中提到】 : 函数原型声明返回 reference : : ?而
|
t****t 发帖数: 6806 | 4 ...英文不好?
【在 x******a 的大作中提到】 : thank you : but why is it "to" a local object not "from" a local object
|
x******a 发帖数: 6336 | 5 请帮忙翻译一下成中文。。。谢谢。
【在 t****t 的大作中提到】 : ...英文不好?
|
t****t 发帖数: 6806 | 6 请勿返回对局部对象的引用.
【在 x******a 的大作中提到】 : 请帮忙翻译一下成中文。。。谢谢。
|
p**o 发帖数: 3409 | 7 http://en.wiktionary.org/wiki/refer
http://idioms.thefreedictionary.com/refer+to
【在 x******a 的大作中提到】 : thank you : but why is it "to" a local object not "from" a local object
|
g***i 发帖数: 4272 | |
x******a 发帖数: 6336 | 9 下了,看过一些。谢谢
【在 g***i 的大作中提到】 : lz还是下个中文版看吧
|