程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> c++-小女子初學編程,遇到的問題不少,希望各位大神耐心指教。。非常感謝!

c++-小女子初學編程,遇到的問題不少,希望各位大神耐心指教。。非常感謝!

編輯:編程綜合問答
小女子初學編程,遇到的問題不少,希望各位大神耐心指教。。非常感謝!

題目:聲明字符型靜態數據成員ServerName,保存其服務器名稱;聲明整型靜態數據成員ClientNum,記錄已定義的客戶數量;定義靜態函數ChangeServerName()改變服務器名稱.在頭文件client.h中聲明類,在文件clent.cpp中實現,在文件test.cpp中測試這個類,觀察相應的成員
下面是我寫的程序:
#include
using namespace std;
class CLIENT
{
public:
CLIENT(char name,int num)
{
ServerName=name;
ClientNum=num;
}
CLIENT(CLIENT &p);
~CLIENT() {}
void showServerName() {}
void showClientNum() {}
void showChangeServerName();
private:
static char ServerName;
static int ClientNum;
};

#include"client.h"
CLIENT::ServerName(char name)
{
ServerName=name;
}
CLIENT::ClientNum(int num)
{
ClientNum=num;
}
char ServerName='I';
int ClientNum=0;

#include
#include"text.h"

int main()
{
CLIENT n(7,'W');
cout<<"已定義客戶數量:"<<n.showClientNum()<<endl;
n.showClientNum();
cout<<"服務器名稱改為:"<<n.showChangeServerName()<<endl;
n.showChangeServerName();
}

最佳回答:


在頭文件client.h中聲明類:

class CLIENT
{
public:
CLIENT(char name,int num);
~CLIENT();

char getServerName() ;
int getClientNum();
static void ChangeServerName(char newName);

private:
static char ServerName;
static int ClientNum;
};

在文件clent.cpp中實現:

CLIENT::CLIENT(char name,int num)
{
ServerName=name;
ClientNum=num;
}
CLIENT::~CLIENT() {}

char CLIENT::getServerName()
{
return ServerName;
}
int CLIENT::getClientNum()
{
return ClientNum;
}
void CLIENT::ChangeServerName(char newName)
{
ServerName = newName;
}

在文件test.cpp中測試這個類,觀察相應的成員:

#include
using namespace std;
int main6()
{
CLIENT n(7,'W');
cout<<"qqqqq:"<<n.getServerName()<<endl;
cout<<"aaaaa:"<<n.getClientNum()<<endl;
n.ChangeServerName('X');
cout<<"qqqqq:"<<n.getServerName()<<endl;
cout<<"aaaaa:"<<n.getClientNum()<<endl;
}

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