开发者

Template class implicit copy constructor issues

开发者 https://www.devze.com 2022-12-26 23:59 出处:网络
Stepping through my program in gdb, line 108 returns right back to the calling function, and doesn\'t call the copy constructor in class A, like (I thought) it should:

Stepping through my program in gdb, line 108 returns right back to the calling function, and doesn't call the copy constructor in class A, like (I thought) it should:

template <class S> class A{
    //etc...
    A( const A & old ){
        //do stuff...
    }
    //etc...
};

template <class T> class B{
    //etc...
    A<T> ReturnsAnA(){
        A<T> result;
        // do some stuff with result
        return result; //line 108
    }
开发者_如何学Go    //etc...
};

Any hints? I've banged my head against the wall about this for 4 hours now, and can't seem to come up with what's happening here.


(Named) return value optimization is in effect. Your copy constructor is being removed as an optimization (this is permitted by the standard although results in different behavior).

See also Understanding return value optimization and returning temporaries - C++.

(Templates have nothing to do with this.)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号