程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c++基礎-c++關於靜態成員的問題

c++基礎-c++關於靜態成員的問題

編輯:編程綜合問答
c++關於靜態成員的問題

#include
#include
using namespace std;
const int MAX=100;
const int N=8;

class Order
{
private:
int num; //訂單編號
string name; //訂單名稱
float price; //訂單價格
int quantity; //訂單數量
static int cout;
static double total;
public:
void Input();
void Output();

template
T judge(T a)
{

    while(a<0)
    {
        cout<<"輸入不合法,重新輸入:";
        cin>>a;
    }
        return a;
    }

};
//int Order::cout=0;
//double Order::total=0;
void Order::Input()
{
cout<<"請輸入訂單編號:";
cin>>num;
cout<<"請輸入訂單名稱:";
cin>>name;
cout<<"請輸入訂單價格:";
cin>>price;
price=judge(price);
cout<<"請輸入訂單數量:";
cin>>quantity;
quantity=judge(quantity);
}
void Order::Output()
{
cout<<setw(N)<<"編號"<<setw(N)<<"名稱"<<setw(N)<<"價格"<<setw(N)<<"數量"<<endl;
cout<<setw(N)<<num<<setw(N)<<name<<setw(N)<<price<<setw(N)<<quantity<<endl;
}

int main()
{ Order c;
c.Input();
c.Output();
return 0;
}
我什麼加上靜態成員就不能運行了呢,圖片說明

最佳回答:


cout 變量的命名,與系統關鍵字沖突了。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved