多层函数参数非const引用潜在的危险

 

 

#include <iostream>

using namespace std;

struct Node{

    int u;

    Node(int uu = 0):u(uu){

        cout << "create" << endl;

    }

    ~Node(){

        u = 0;

        cout << "delete/n";

    }

    Node(const Node &no){

        cout << "copy/n";

        u = no.u;

    }

    Node operator + (const Node &no) const{

        cout << "+/n";

        Node tmp;

        tmp.u = u+no.u;

        cout << "return tmp/n";

        return tmp;

    }

    Node& operator ++ (){

        cout << "pre/n";

        ++u;

        return *this;

    }

    const Node operator ++ (int){

        Node tmp = *this;

        ++u;

        return tmp;

    }

 

};

 

Node& f(Node &no){

    no.u += 1;

    return no;

}

//多层函数引用时编译器检查不出,不会有警告

Node& ff(){

    Node n(10);

    cout << "ff/n";

    return f(n);//函数调用完即析构,但却仍被引用

}

 

int main(){

    Node &t = ff();

    cout << t.u << endl;

    return 0;

}

单层的返回局部引用会得到编译器警告,但是多层编译器就没这么聪明了。。。调用ff后n已经被析构了,u值也被修改了,但是他仍然被引用。。
还有后缀增量返回值的问题要注意。

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值