您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)C++中如何使用全局函數(shù),可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
1 類的特化和類成員函數(shù)的特化
template< typename T> class Widget1 { public: void Fun1() { //generic implementation } }; template< > class Widget1< int> { public: void Fun1() { } }; template< > void Widget1< char>::Fun1() { //specialization } void main() { Widget1< char> w; w.Fun1(); Widget1< int> w2; w2.Fun1(); }
2 C++全局函數(shù)的特化和重載
template< typename T1, typename T2> T1 Fun2(T2) { }
下面2個應(yīng)該是屬于重載
template< typename T2> char Fun2(T2) { char c; return c; } template< typename T1> T1 Fun2(char) { }
C++全局函數(shù)的特化
template< > char Fun2< char,int>(int) { char c; return c; } int main() { }
3 C++全局函數(shù)不能半特化,以下編譯失敗
template < typename T1,typename T2> //原型1 void Test(T1,T2) { } template < typename T1> void Test< T1,T1>(T1,T1) { } template< typename T1, typename T2> //原型2 T1 Fun2(T2) { } // template< typename T2> int Fun2< int,T2>(T2) { } template< typename T1> T1 Fun2< T1,int>(int) { } template< typename T> T Fun2< T,T>(T) { } int main() { }
4 類可以特化和半特化,但是特的成員函數(shù)像C++全局函數(shù)一樣,只能特化,不能半特化,
template< typename T1, typename T2> struct Widget2 { void Fun2() { //generic implementation } }; template< typename T2> struct Widget2< char,T2> { void Fun2() { } }; template< typename T2> struct widget2 { void Fun2() { // class partial specialization } }; //the class member funtion can not be partial specialization
以下的成員函數(shù)半特化,編譯失敗
template< typename T2> void Widget2< char, T2>::Fun2() { //class member function partial specialization } int main() { }
看完上述內(nèi)容,你們對C++中如何使用全局函數(shù)有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。