C++語言程序設計_第1頁
C++語言程序設計_第2頁
C++語言程序設計_第3頁
C++語言程序設計_第4頁
C++語言程序設計_第5頁
已閱讀5頁,還剩28頁未讀 繼續(xù)免費閱讀

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權,請進行舉報或認領

文檔簡介

1、 計算機科學與技術系上機實驗報告課 程:c+語言程序設計老 師:姓 名:(老撾留學生)班 級:計科 101 班學 號:學 院:計算機科學與信息學院 實驗日期: 年 月 日實驗一一、實驗名稱類和對象二、實驗目的及要求設計一個類,并對其屬性進行操作。三、實驗環(huán)境microsoft visual studio 2010四、實驗內(nèi)容1,定義一個dog類,包含age,weight等屬性。以及對這些屬性的操作方法。實現(xiàn)并測試這個類。2,設計一個rectangle類,其屬性為矩形的左下角與右上角的坐標,根據(jù)坐標計算矩形的面積。五、算法描述及實驗步驟dog+dog(n: string , ag: int ,w

2、e: int)+get()+show()+dog()-name: string-weight: int-age: intrectangle+get(): void+show(): void-x1:int-x2: int-y1: int-y2: int六、調(diào)試過程及實驗結果1, 保存源程序代碼,并聲稱解決方案。2,調(diào)試并執(zhí)行。3,輸出為:the message of dog is:name:tutu age:2 weight:20input the name age and weight of dog花花 3 60the message of dog is:name:花花 age:3 weigh

3、t:60the message of dog is:name:hua age:4 weight:60calledcalled請按任意鍵繼續(xù). . .輸入左下角的坐標:3 6輸入右上角的坐標:4 7兩點的坐標左下角的坐標:(3,6)右上角的坐標:(4,7)面積為:1輸入左下角的坐標:1 0輸入右上角的坐標:2 6兩點的坐標左下角的坐標:(1,0)右上角的坐標:(2,6)面積為:6請按任意鍵繼續(xù). . .七、總結1,構造函數(shù)用于對對象的初始化,在定義類時,如果沒有定義構造函數(shù),系統(tǒng)將自動生成一個簡單的構造函數(shù)。2,構造函數(shù)沒有返回值,不允許顯示調(diào)用,創(chuàng)建對象時,系統(tǒng)將自動調(diào)用相應的構造函數(shù)。3,析

4、構函數(shù)是對對象進行最后的清理工作,它不允許有參數(shù),沒有返回值。如果沒有定義析構函數(shù),系統(tǒng)將自動生成。4,對象的私有成員,可以通過成員函數(shù)訪問,類外不能訪問對象的私有成員。八、附錄1, dog.h#include#includeusing namespace std;class dogpublic:dog(string n,int ag,int we);void get();void show();dog()coutcalled endl;private:string name;int weight;int age;dog.cpp#include4-8.hdog:dog(string n,int

5、 ag,int we):name(n),age(ag),weight(we)void dog:get()coutinput the name age and weight of dognameageweight;void dog:show()coutthe message of dog is:endl;coutname:name age:”age” weight:”weightendl;dogmain.cpp#include4-8.hint main()dog dog(tutu,2,20);dog.show();dog.get();dog.show();dog dog1(hua,4,60);d

6、og1.show();return 0;2, rectangle.h#include#includeusing namespace std;class rectanglepublic:void get();void show();private:int x1,x2,y1,y2;rectangle.cpp#include4-9.hvoid rectangle:get()cout輸入左下角的坐標:x1y1;cout輸入右上角的坐標:x2y2;void rectangle:show()cout兩點的坐標endl;cout左下角的坐標:(x1,y1)endl;cout右上角的坐標:(x2,y2)end

7、l;cout面積為:(x2-x1)*(y2-y1)endl;rectangle main.cpp#include4-9.hint main()rectangle r1;r1.get();r1.show();rectangle r2;r2.get();r2.show();return 0;實驗二一、實驗名稱類與對象二、實驗目的及要求熟悉設計簡單類及測試的方法。三、實驗環(huán)境microsoft visual studio 2010四、實驗內(nèi)容1,設計一個人事管理類,其屬性有編號、性別、出生年月、身份證號等其中出生年月聲明為一個日期類內(nèi)嵌子對象。實現(xiàn)對成員信息的錄入和輸出。要求包括:構造函數(shù)析構函數(shù)、

8、復制構造函數(shù)、內(nèi)聯(lián)成員函數(shù)、帶默認形參值的成員函數(shù)、類的組合。2,定義一個復數(shù)類complex,是下面的程序代碼能夠工作:complex c1(3,5); /用復數(shù)5+3i初始化c1complex c2=4.5; /用實數(shù)4.5初始化c2c1.add(c2); /將c1與c2相加,結果保留在c1中c1.show(); /將c1輸出,結果應為7.5+5i五、算法描述及實驗步驟1,date+date(y:int=0,m:int=0,d:int=0)+get():void+show():void+date()-year:int-month:int -day:inthumain+humain()+hu

9、main(p: &humain)+get(p :&humain):void+show(p:&humain):void-berthday:date-name:string-cd:string-six:string-number:string2,complex+complex(a:float=0,b:float=0)+add(p:&complex):void+show(p:&complex):void-real:float-imag:float六、調(diào)試過程及實驗結果1, 保存源程序代碼,并聲稱解決方案。2,調(diào)試并執(zhí)行。3,輸出為:the first one before setname:six:c

10、d:number:berthday:0/0/0the first one after setinput the name six cd and number:name:喻福松six:男cd:5210452015number:1008060028input berthday:input year month and day1990 5 6name:喻福松six:男cd:5210452015number:1008060028berthday:1990/5/6p2name:喻福松six:男cd:5210452015number:1008060028berthday:1990/5/6called da

11、tecalled date請按任意鍵繼續(xù). . . number:7.5+5i請按任意鍵繼續(xù).七、總結1,類的組合 當當前類所使用的類還沒有定義時,在當前類中只能建立此類的引用。如果已經(jīng)定義在前,就可以直接建立對象。2,訪問子對象中的可訪問成員用“當前類子對象成員”的形式。3,內(nèi)聯(lián)成員函數(shù):用關鍵字“inline”聲明,在程序調(diào)用內(nèi)聯(lián)成員函數(shù)時,并不真正執(zhí)行函數(shù)的調(diào)用過程,如保留返回地址等處理,而是把函數(shù)代碼嵌入程序的調(diào)用點,這樣可以減少調(diào)用成員函數(shù)的時間。4,帶默認參數(shù)的函數(shù): 由于函數(shù)調(diào)用時,實參和形參的結合是從左到右順序進行的,因此指定默認值的參數(shù)必須放在參數(shù)列表的最右端。八、附錄1,h

12、umainh 文件#include#includeusing namespace std;class datepublic:date(int y=0,int m=0,int d=0);void get ();void show();date()cout called dateendl;private:int year;int month;int day;lass humainpublic:humain();humain(humain &p);void get(humain &p);void show(humain &p);private:date berthday;string name;st

13、ring cd;string six;string number;humaincpp文件#include4-10.hdate:date(int y,int m,int d):year(y),month(m),day(d)void inline date:get() coutinput year month and dayyearmonthday;void date:show() coutyear/month/dayendl;humain:humain()name= ;cd= ;six= ;number=;humain:humain(humain &p)berthday=p.berthday;n

14、ame=;cd=p.cd;six=p.six;number=p.number;void humain:get(humain &p)coutinput the name six cd and number:endl;coutname;coutsix;coutcd;coutnumber;coutinput berthday:;p.berthday.get();void humain:show(humain &p)coutname:nameendl;cout six:sixendlcd:cdendlnumber:numberendl;coutberthday:;p.berthday.sh

15、ow();humain maincpp文件#include4-10.hint main()humain p1;coutthe frist one befor setendl;p1.show(p1);coutthe frist one after setendl;p1.get(p1);p1.show(p1);humain p2(p1);coutp2endl;p2.show(p2);return 0;2,complexh文件#includeusing namespace std;class complexpublic:complex(float a=0,float b=0);void add(co

16、mplex &p);void show();private:float real;float imag;complexcpp文件#include4-20.hcomplex:complex(float a,float b):real(a),imag(b)void complex:add(complex &p)real=real+p.real;imag=imag+p.imag;void complex:show()coutreal+imagiendl;complex maincpp文件#include4-20.hint main()complex c1(3,5);complex c2=4.5;c1

17、.add(c2);c1.show();return 0;實驗三一、實驗名稱數(shù)據(jù)的共享與保護二、實驗目的及要求掌握對靜態(tài)成員、靜態(tài)函數(shù)、友元函數(shù)的使用方法。三、實驗環(huán)境microsoft visual studio 2010四、實驗內(nèi)容1,定義一個cat類,擁有靜態(tài)成員numofcat,記錄cat的個體數(shù)目;靜態(tài)成員函數(shù)getnumofcat(),讀取numofcat。2,定義boat與car兩個類,二者都有weight屬性,定義二者的友元函數(shù)gettoalweight(),計算二者的重量和。五、算法描述及實驗步驟1,cat+cat()+get(): void+show(): void+getn

18、umofcat(): void - numofcat: int- name: string- num : stringboat+boat(n: string, nu :string, we: string)+gettoalweight(p1: boat&,p2:car&)+get(): void+show(): void- name:string - num : string- weight: intcar+car(n: string, nu :string, we: string)+gettoalweight(p1: boat&,p2:car&)+get(): void+show(): vo

19、id- name:string - num : string- weight: int六、調(diào)試過程及實驗結果1, 保存源程序代碼,并聲稱解決方案。2,調(diào)試并執(zhí)行。3,輸出為:1, input the name tutuname:tutunum:1numofcat:1call staticnumofcat:1input the name huaname:huanum:2numofcat:2call staticnumofcat:2請按任意鍵繼續(xù). . .2,boatname:fengnum:012002weight:60carname:bennum:0054weight:80140tutu 01

20、24 90baoma 0142453 100boatname:tutunum:0124weight:90carname:baomanum:0142453weight:100190請按任意鍵繼續(xù)七、總結1,靜態(tài)成員,不屬于任何對象,系統(tǒng)單獨非配空間。靜態(tài)數(shù)據(jù)成員具有一般靜態(tài)數(shù)據(jù)的特征,即只在第一次賦值。2,靜態(tài)數(shù)據(jù)成員可以被所在類的成員函數(shù)訪問,由于靜態(tài)成員函數(shù)的形參中沒有this指針,因此靜態(tài)成員函數(shù)不能直接訪問非靜態(tài)成員數(shù)據(jù),可以通過對象名的方式訪問。3,如果一個函數(shù)被聲明為以為類的友元函數(shù),那么這個函數(shù)就可以訪問這個類中的所有成員。4,有元不可以傳遞:如聲明a是b的有元,b是c的有元。那么

21、b不是a的有元,c也不是b的有元,a不是c的有元。八、附錄1, cath文件#include#includeusing namespace std;class catpublic:cat()name= ;numofcat+;num=numofcat;void get();void show();static void getnumofcat();private:static int numofcat;string name;string num;catcpp文件#include5-7.hint cat:numofcat=0;void cat:get()coutname;void cat:sho

22、w()coutname:nameendl;coutnum:numendl;coutnumofcat:numofcatendl;void cat:getnumofcat()coutcall staticendl;coutnumofcat:numofcatendl;cat maincpp文件#include5-7.hint main()cat cat1;cat1.get();cat1.show();cat1.getnumofcat();cat cat2;cat2.get();cat2.show();cat2.getnumofcat();return 0;2,car and boath文件#incl

23、ude#includeusing namespace std;class car;class boatpublic:boat(string n,string nu,int we);void friend gettoalweight(boat &p1,car &p2);void get();void show();private:string name;string num;int weight;class carpublic:car(string n,string nu,int we);void friend gettoalweight(boat &p1,car &p2);void get()

24、;void show();private:string name;string num;int weight;car and boatcpp文件#include5-14.hvoid gettoalweight(boat &p1,car &p2)coutp1.weight+p2.weightnamenumweight;void boat:show()coutboatendl;coutname:nameendlnum:numendlweight:weightnamenumweight;void car:show()coutcarendl;coutname:nameendlnum:numendlwe

25、ight:weight添加事件處理程)。 在消息類型中選擇command,在類列表中選擇cgdview,并在函數(shù)處理程序名稱欄修改函數(shù)名。點擊添加編輯添加相應的函數(shù)。六、調(diào)試過程及實驗結果1, 保存源程序代碼,并聲稱解決方案。2,調(diào)試并執(zhí)行。3,輸出為:ab輸出如下圖:(點擊運行菜單中的啟動和停止按鈕,或者雙擊鼠標的左右鍵,字幕會執(zhí)行相應的動作)七、總結microsoft visual studio 2008與microsoft visual studio 2010有很大的差別。八、附錄a 添加的類max定義:class maxdouble x1,x2,x3,x4;double max2(do

26、uble,double);public:max(double,double,double,double);double max4();2添加的類max實現(xiàn)部分:double max:max2(double a, double b)if(a=b) return a;else return b;max:max(double a, double b, double c, double d)x1=a;x2=b;x3=c;x4=d;double max:max4()return max2(max2(x1,x2),max2(x3,x4);3. 添加的find函數(shù):void cplotdoc:find()m

27、ax a(110.5, 120.8, 110, 68);max b(130, 256.5, 90, 200);max c(125, 406.8, 350, 330);max d(120, 356.8, 300, 280.5);max e(102, 256.8, 120, 105);m_num0 = (int) a. max4();m_num1 = (int) b. max4();m_num2 = (int) c. max4();m_num3 = (int) d. max4();m_num4 = (int) e. max4();4. 修改后的ondraw函數(shù):void cplotview:ond

28、raw(cdc* pdc)cplotdoc* pdoc = getdocument();assert_valid(pdoc);/ todo: add draw code for native data herepdc-setmapmode(mm_isotropic);pdc-setviewportorg(50,250);pdc-moveto(0,0);pdc-lineto(1100,0);pdc-moveto(0,0);pdc-lineto(0,600);int width = 40;int ch = a; cstring str1;cbrush brush;brush.createsolid

29、brush(rgb(50, 250,0);pdc-selectobject(brush);for(int i = 1; irectangle(200*i, 0, 200*i+width, pdoc-m_numi-1); str1.format(_t(%c),ch); /整型以字符格式賦給str1 pdc-textout(200*i+10,-10, str1); /輸出abcdecfont font;font.createfont(0,0,0,0,800,0,0,0,oem_charset, out_default_precis,clip_default_precis,default_quali

30、ty,default_pitch,_t(楷體));pdc-selectobject(&font);pdc-textout(200,550, _t(各公司銷售點水果月銷售量直方圖);b1. 在gdview.cpp文件中修改后的ondraw函數(shù):void cxxx2view:ondraw(cdc* pdc)cxxx2doc* pdoc = getdocument(); assert_valid(pdoc);if (!pdoc)return;pdc-settextcolor(rgb(0,0,235);pdc-setbkmode(transparent);cfont font;font.createf

31、ont(28,15,0,0,fw_normal,false,false,false,default_charset,out_device_precis,clip_default_precis,default_quality,default_pitch,_t(隸書);pdc-selectobject(&font);pdc-textout(n,100,_t(世上無難事,只要肯登攀!);n=n+20;rect r;getclientrect(&r); /獲得窗口if(nr.right-r.left)/窗口如果n 右坐標減去左坐標n=0; 添加的消息映射:void cgdview:onlbuttond

32、blclk(uint nflags, cpoint point) /鼠標左雙擊函數(shù)/ todo: add your message handler code here and/or call defaultsettimer(1,500,null);cview:onlbuttondblclk(nflags, point);void cgdview:onrbuttondblclk(uint nflags, cpoint point) /鼠標右雙擊函數(shù)/ todo: add your message handler code here and/or call defaultkilltimer(1);

33、cview:onrbuttondblclk(nflags, point);void cgdview:ontimer(uint nidevent) / todo: add your message handler code here and/or call defaultinvalidate();cview:ontimer(nidevent);添加的啟動及停止對應的消息void cxxx2view:onmove() /啟動對應消息/ todo: add your command handler code heresettimer(1,300,null);void cxxx2view:onstop

34、() /停止對應的消息/ todo: add your command handler code herekilltimer(1);實驗六一、實驗名稱單文檔串行化編程二、實驗目的及要求了解簡單的單文檔串行化編程方法。三、實驗環(huán)境microsoft visual studio 2010四、實驗內(nèi)容設計應用程序串行化一個矩形數(shù)據(jù),用對話框修改數(shù)據(jù),并顯示圖形。對話框如下:五、算法描述及實驗步驟1. 用appwizard建立一個普通單文檔ff工程,按下一步,直到出現(xiàn)下圖,將cffview的基類設為cformview。2. 在對話框中添加相應的控件,并添加變量,如下圖:其中第五個編輯框添加為:控件類型,如下圖:3.為四個編輯框添加事件處理程序,如下圖:并添加相應的函數(shù)。3. 在doc頭文件ffdoc.h中添加變量,并在ffdoc.cpp的構造函數(shù)中初始化變量。4. 在ffdoc.cpp的串行

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論