C++中確定型別

來源:互聯網
上載者:User
#include<iostream>using namespace std;template<typename T>struct Iter{typedef T value_type;T* ptr;Iter(T* p=0):ptr(p){}T& operator*() const {return *ptr;}};template<class I>typename I::value_type //這一整行是func的傳回型別
func(I item){return *item;}int main(){Iter<int> t(new int(10));cout<<func(t)<<endl;int *tt;tt=new int(10);cout<<*tt<<endl;cout<<tt<<endl;return 0;}

定義了一個Iter類,其中的typedef T value_type 是內嵌型別聲明。

注意typename I::value_type是函數func的傳回型別,且必須要typename這個關鍵字。

因為T是一個template參數,在他被編譯器具體化之前,編譯器對T一無所悉。換句話說就是編譯器姿勢不知道Iter<T>::value_type代表的是一個型別

或是一個member function或是一個data member。關鍵字typename的用意在於告訴編譯器這是一個型別,如此才能順利通過編譯

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.