C++primer 16.1.3節練習

來源:互聯網
上載者:User

標籤:signed   typename   pen   sys   必須   auto   str   log   lin   

練習16.17

原則上並沒有什麼特別的差別,只是在我們希望通知編譯器一個名字表示類型時,必須使用關鍵字typename,而不能使用class。

練習16.18

a)template <typename T, typename U, typename V> void f1(T, U, V);
b)template <typename T> T f2(T&);
c)template <typename T> inline T foo(T, unsigned int *);
d)template <typename T> T f4(T, T);
e)合法

練習16.19

 1 #include <iostream> 2 #include <string> 3 #include <utility> 4 #include <memory> 5 #include <vector> 6 #include <list> 7  8 using namespace std; 9 10 template <typename T>void print(const T& t);11 12 int main()13 {14     vector<string> v1{ "ad", "ad" };15     print(v1);16     system("pause");17     return 0;18 }19 20 template<typename T>21 void print(const T & t)22 {23     for (size_t i = 0; i != t.size(); ++i)24         cout << t[i] << endl;25 }

練習19.20

 1 #include <iostream> 2 #include <string> 3 #include <utility> 4 #include <memory> 5 #include <vector> 6 #include <list> 7  8 using namespace std; 9 10 template <typename T>void print(const T& t);11 12 int main()13 {14     vector<string> v1{ "ad", "ad" };15     print(v1);16     system("pause");17     return 0;18 }19 20 template<typename T>21 void print(const T & t)22 {23     for (auto p = t.begin(); p != t.end(); ++p)24         cout << *p << endl;25 }

 

C++primer 16.1.3節練習

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.