c++ learning -- 函数返回引用

1,当函数返回引用类型时,没有复制返回值。相反,返回的是对象本身。比如:

const string &shorterString(const string &s1,const string &s2)
{

    return s1.size < s2.size ? s1:s2;

}

调用函数和返回结果时,都没有复制这些string对象。

2,返回引用,要求在函数的参数中,包含有以引用方式或指针方式存在的,需要被返回的参数。比如:

 

int& abc(int a, int b, int c, int& result){

       result = a + b + c;
       return result;
}


 这种形式也可改写为:
int& abc(int a, int b, int c, int *result){
      *result = a + b + c;
      return *result;
}


但是,如下的形式是不可以的:
int& abc(int a, int b, int c){
      return a + b + c;
}

 

3,千万不要返回局部对象的引用。当函数执行完毕时,将释放分配给局部对象的存储空间。此时,对局部对象的引用就会指向不确定的内存。如:

const string &manip(const string &s)

{

string ret =s;

return ret;  //wrong:returning reference to a local object

}

比如:

返回时result已经销毁,

所以当:

std::string source = ReadFile(filepath);

source指向的是不确定的内存!

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值