student.h
#include using namespace std;
class student;
student.cpp
#include #include #include "student.h"
using namespace std;
student::student (string user_name, string pass_word)
string student::get_user_name()
string student::get_pass_word()
void student::set_user_name(string user_name)
void student::set_pass_word(string pass_word)
void student::display()
main.cpp
#include #include #include "student.h"
using namespace std;
int main()
執行結果:
user_name: xiaoming
pass_word: 123
456press any key to continue
作此專案之前的準備:
畫類圖: 類圖
student
string user_name
string pass_word
student (string user_name,string pass_word)
string get_user_name()
string get_pass_word()
void set_name_word(string)
void set_pass_word(string)
void display()
這樣可以使編碼更為簡單,不會出錯
經驗積累:
1.對資料成員賦初值時,所有引數必須與所對應的資料成員名稱一致;
2.需要訪問資料成員時用this指向;
3.畫類圖比寫**更為重要;
4.做乙個專案最好多檔案組織專案,良好的習慣需要逐步養成!!!
4 2 利用多檔案組織專案
報告 2 實驗目的 利用多檔案組織專案 實驗內容 對任務及求解方法的描述部分 輸入描述 問題描述 程式輸出 問題分析 演算法設計 主檔案 main.cpp,用於定義main 函式 include include mytime.h using namespace std int main void t...
用多檔案組織角色類
問題及 main.cpp測試函式 檔名稱 帶 的角色類 完成日期 2016年4月17日 問題描述 建立多檔案表示帶 的角色類 輸入描述 輸入數字 輸出描述 輸出血量 include include game.h using namespace std int main return 0 game.h...
專案三 用多檔案組織多個類的程式
專案3 用多檔案組織多個類的程式 將專案2 用 乙個專案多個檔案 的方式實現,其中兩個類的宣告放在同乙個.h檔案中,每個類的成員函式分別放乙個檔案,main 函式用乙個檔案。體會這樣安排的優點。geometry.h ifndef geometry h included define geometry...