标题:关于构造函数初始化
取消只看楼主
gao_guai
Rank: 2
等 级:论坛游民
帖 子:73
专家分:16
注 册:2011-6-5
 问题点数:0 回复次数:0 
关于构造函数初始化
template <class elemType>
class Example2 {
public:
     explicit Example2( elemType val = 0 )
     : _val( val ){}
      
     bool min( elemType value ) { return _val < value; }
     void value( elemType new_val ) { _val = new_val; }
     void print( ostream &os ) { os << _val; }
private:
     elemType _val;
};
 
template<class elemType>
ostream& operator<< ( ostream &os, const Example2<elemType> &ex )
{ ex.print( os ); return os; }

 Example2< string > exs( "Walden" ); 这一句为什么能初始化exs的值 为Walden
搜索更多相关主题的帖子: void private public return 
2011-08-09 11:04



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-347126-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.074259 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved