[C++]Member functions are instantiated only when they

For class templates, member functions are instantiated only when they are used. This, of course, saves time and space.

using namespace std;template <typename T>class myTemplate{private:    typename T m_t;public:    myTemplate(T t):m_t(t){};    T AddOne(){        return m_t + 1;    }    void Output(){cout<<m_t<<endl;}};int main(){    myTemplate<int> i(10);    i.AddOne();    i.Output();    myTemplate<string> s("temp");    //s.AddOne(); // Compile error becasue std::string has no operator + with int type    s.Output(); // however, this line has no issue    return 10;}

原文链接: https://www.cnblogs.com/aoaoblogs/archive/2011/07/04/2097261.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/28082

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月8日 上午5:38
下一篇 2023年2月8日 上午5:38

相关推荐