首頁 > 常見問題 > 主體

template是什麼意思

爱喝马黛茶的安东尼
發布: 2019-07-25 16:36:30
原創
16124 人瀏覽過

template<class type>是什麼意思

模板類別以這樣的程式碼開頭:template

template  可以用它定義一個模板類別或模板函數 ,class 所對的type表示一種類型。

class看成是變數的型別名,該變數接受型別作為其值,把Type視為該變數的名稱。

將範本資訊放在一個頭檔中,建立stacktp.h

#ifndef STACKTP_H_
#define STACKTP_H_
// 建立模板
template<class Type>
class Stack
{
private:
    enum {MAX=10};
    Type items[MAX];
    int top;
public:
    Stack();
    bool isempty();
    bool isfull();
    bool push(const Type & item);
    bool pop(Type & item);
};
template<class Type>
Stack<Type>::Stack()
{
    top=10;
}
template<class Type>
bool Stack<Type>::isempty()
{
    return top==0;
}
template<class Type>
bool Stack<Type>::isfull()
{
    return top==MAX;
}
template<class Type>
bool Stack<Type>::push(const Type &item)
{
    if(top<MAX)
    {
        items[top++]=item;
        return true;
    }
    else
        return false;
}
template<class Type>
bool Stack<Type>::pop(Type & item)
{
    if(top>0)
    {
        item=items[--top];
        return true;
    }
    else
        return false;
}
#endif
登入後複製

相關推薦:《常見問題

#建立原始檔stacktem .cpp;

#include<iostream>
#include<string>
#include<cctype>
#include"stacktp.h"
using namespace std;
int main()
{
    Stack<string> st;// 创建一个空的stack,和前面的模板联系起来
    char ch;
    string po;
    cout<<"Please enter A to add a purchase order.\n"
        <<"P to precess a PO,or Q to quit."<<endl;
    while(cin>>ch && toupper(ch)!=&#39;Q&#39; )
    {
        while(cin.get()!=&#39;\n&#39;)
        {
            continue;
        }
        if(!isalpha(ch))
        {
            cout<<&#39;\a&#39;;
            continue;
        }
        switch(ch)
        {
        case &#39;A&#39;:
        case &#39;a&#39;:cout<<"Enter a PO number to add:"<<endl;
            cin>>po;
            if(st.isfull())
            {
                cout<<"stack already full"<<endl;
            }
            else
            {
                st.push(po);
            }
            break;
        case &#39;P&#39;:
        case &#39;p&#39;:
            if(st.isempty())
            {
                cout<<"stack already empty"<<endl;
            }
            else
            {
                st.pop(po);
                cout<<"PO #"<<po<<" popped\n";
                break;
            }
        }
        cout<<"Please enter A to add a purchase order,\n"
            <<"P to process a PO,or Q to quit.\n";
    }
    cout<<"Bye!"<<endl;
        return 0;
}
登入後複製

template<class type>是什麼意思

以上是template是什麼意思的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板