黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

C++ 模板

c++ 模板

模板是泛型編程的基礎,泛型編程即以一種獨立于任何特定類型的方式編寫代碼。

模板是創(chuàng)建泛型類或函數(shù)的藍圖或公式。庫容器,比如迭代器和算法,都是泛型編程的例子,它們都使用了模板的概念。

每個容器都有一個單一的定義,比如 向量,我們可以定義許多不同類型的向量,比如 vector <int> 或 vector <string>。

您可以使用模板來定義函數(shù)和類,接下來讓我們一起來看看如何使用。

 

1. 函數(shù)模板

模板函數(shù)定義的一般形式如下所示:

template <typename type> ret-type func-name(parameter list)
{
   // 函數(shù)的主體
}  

在這里,type 是函數(shù)所使用的數(shù)據(jù)類型的占位符名稱。這個名稱可以在函數(shù)定義中使用。

下面是函數(shù)模板的實例,返回兩個數(shù)中的最大值:

#include <iostream>
#include <string>

using namespace std;

template <typename t>
inline t const& max (t const& a, t const& b) 
{ 
    return a < b ? b:a; 
} 
int main ()
{
 
    int i = 39;
    int j = 20;
    cout << "max(i, j): " << max(i, j) << endl; 

    double f1 = 13.5; 
    double f2 = 20.7; 
    cout << "max(f1, f2): " << max(f1, f2) << endl; 

    string s1 = "hello"; 
    string s2 = "world"; 
    cout << "max(s1, s2): " << max(s1, s2) << endl; 

   return 0;
}

當上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:

max(i, j): 39
max(f1, f2): 20.7
max(s1, s2): world

 

2. 類模板

正如我們定義函數(shù)模板一樣,我們也可以定義類模板。泛型類聲明的一般形式如下所示:

template <class type> class class-name {
.
.
.
}

在這里,type 是占位符類型名稱,可以在類被實例化的時候進行指定。您可以使用一個逗號分隔的列表來定義多個泛型數(shù)據(jù)類型。

下面的實例定義了類 stack<>,并實現(xiàn)了泛型方法來對元素進行入棧出棧操作:

#include <iostream>
#include <vector>
#include <cstdlib>
#include <string>
#include <stdexcept>

using namespace std;

template <class t>
class stack { 
  private: 
    vector<t> elems;     // 元素 

  public: 
    void push(t const&);  // 入棧
    void pop();               // 出棧
    t top() const;            // 返回棧頂元素
    bool empty() const{       // 如果為空則返回真。
        return elems.empty(); 
    } 
}; 

template <class t>
void stack<t>::push (t const& elem) 
{ 
    // 追加傳入元素的副本
    elems.push_back(elem);    
} 

template <class t>
void stack<t>::pop () 
{ 
    if (elems.empty()) { 
        throw out_of_range("stack<>::pop(): empty stack"); 
    }
	// 刪除最后一個元素
    elems.pop_back();         
} 

template <class t>
t stack<t>::top () const 
{ 
    if (elems.empty()) { 
        throw out_of_range("stack<>::top(): empty stack"); 
    }
	// 返回最后一個元素的副本 
    return elems.back();      
} 

int main() 
{ 
    try { 
        stack<int>         intstack;  // int 類型的棧 
        stack<string> stringstack;    // string 類型的棧 

        // 操作 int 類型的棧 
        intstack.push(7); 
        cout << intstack.top() <<endl; 

        // 操作 string 類型的棧 
        stringstack.push("hello"); 
        cout << stringstack.top() << std::endl; 
        stringstack.pop(); 
        stringstack.pop(); 
    } 
    catch (exception const& ex) { 
        cout << "exception: " << ex.what() <<endl; 
    } 
}  

當上面的代碼被編譯和執(zhí)行時,它會產(chǎn)生下列結(jié)果:

7
hello
exception: stack<>::pop(): empty stack

下一節(jié):c++ 預處理器

c++ 簡介

相關(guān)文章