ホームページ  >  記事  >  template とはどういう意味ですか?

template とはどういう意味ですか?

爱喝马黛茶的安东尼
爱喝马黛茶的安东尼オリジナル
2019-07-25 15:12:3716105ブラウズ

template<class type> とはどういう意味ですか?

テンプレート クラスは次のコードで始まります: template

template これを使用して、テンプレート クラスまたはテンプレート関数を定義できます。ここで、class は、正しい type が型を表します。

class は変数の型名とみなされます。変数は型を値として受け入れます。型は変数の名前とみなされます。

テンプレート情報をヘッダー ファイルに入れて 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

関連の推奨事項: "FAQ"

ソース ファイル 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 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
前の記事:ホストとは次の記事:ホストとは