|
楼主 |
发表于 2008-11-27 14:58:11
|
显示全部楼层
回复: 【转帖】template <class TYPE,class ARG_TYPE> class
比如CArray <CString, CString&>
//参数
void SetAt( int nIndex, ARG_TYPE newElement );
就相当于void SetAt( int nIndex, CString& newElement );
//返回值
TYPE GetAt( int nIndex ) const;
就相当于CString GetAt(int nIndex) const; |
|