2017.12.19李錦浩【第70天】
今天又再次複習了對二進位制檔案的編寫,又有一部分收穫,對於二進位制檔案的編寫主要的問題就是對頭檔案提供的函式熟悉,否則什麼都幹不了。下階段準備對這些函式進行熟悉。另外,出於對c++課程學習的需要,下階段還需要對前面的一些語法知識進行整理鞏固,爭取在期末考試有個好成績。
附:#include
#include
using
namespace std;
struct
employee ;
class
employees ;
void
employees::initial(const
char*filedat)
else
fdat.close();
}void employees::input(const
char*filedate)
cout << "
開始建立檔案!
\n";
cout << "
員工id:";
cin >> member1.id;
cout << "
員工姓名:
";cin >> member1.name;
cout << "
員工號碼:
";cin >> member1.phone;
cout << "
";cin >> member1.address;
cout << "
";cin >> member1.bianma;
fdat.write((char*)&member1, sizeof(member));
fdat.write((char*)&member, sizeof(member));
}int main()
{const
char *filedat = "f:\\1.dat";
employees a;
a.initial(filedat);
a.input(filedat);
system("pause");
return 0;
明日任務:繼續鞏固二進位制資料檔案的學習。
我學習,我記錄 linq where
需求 乙個集合中篩選出符合條件的。思路是定義乙個,迴圈集合中變數,判斷是否符合條件,新增到新的集合 var list1 new list foreach int i in list 帥選集合中元素小於222的 var list2 new list foreach int x in list view...
我的學習記錄7
2017.10.17 李錦浩 第07天 1 今天完成了昨天未完成的程式,並且除錯成功,目前 沒有發現有什麼問題,但對於程式的高效簡潔性來說我覺得我做的還是不夠,還需要繼續努力。2 今天還自學了函式的呼叫和自定義,對於函式中的返回值及函式的部分呼叫機制理解並能夠運用。附 昨天的程式完成版 includ...
我的學習記錄25
2017.11.4李錦浩 第25天 今天做了乙個百貨公司的程式,將固定 輸入陣列,然後輸出相應公司的營業額。我盡量利用了從前學的關於陣列的知識,運用了一下偏移量來表示陣列。附 百貨公司 include using namespace std int main int b 3 cout 請輸入1 2 ...