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

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、 計(jì)算機(jī)科學(xué)與技術(shù)系上機(jī)實(shí)驗(yàn)報(bào)告課 程:c+語言程序設(shè)計(jì)老 師:姓 名:(老撾留學(xué)生)班 級(jí):計(jì)科 101 班學(xué) 號(hào):學(xué) 院:計(jì)算機(jī)科學(xué)與信息學(xué)院 實(shí)驗(yàn)日期: 年 月 日實(shí)驗(yàn)一一、實(shí)驗(yàn)名稱類和對(duì)象二、實(shí)驗(yàn)?zāi)康募耙笤O(shè)計(jì)一個(gè)類,并對(duì)其屬性進(jìn)行操作。三、實(shí)驗(yàn)環(huán)境microsoft visual studio 2010四、實(shí)驗(yàn)內(nèi)容1,定義一個(gè)dog類,包含age,weight等屬性。以及對(duì)這些屬性的操作方法。實(shí)現(xiàn)并測(cè)試這個(gè)類。2,設(shè)計(jì)一個(gè)rectangle類,其屬性為矩形的左下角與右上角的坐標(biāo),根據(jù)坐標(biāo)計(jì)算矩形的面積。五、算法描述及實(shí)驗(yàn)步驟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)試過程及實(shí)驗(yàn)結(jié)果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請(qǐng)按任意鍵繼續(xù). . .輸入左下角的坐標(biāo):3 6輸入右上角的坐標(biāo):4 7兩點(diǎn)的坐標(biāo)左下角的坐標(biāo):(3,6)右上角的坐標(biāo):(4,7)面積為:1輸入左下角的坐標(biāo):1 0輸入右上角的坐標(biāo):2 6兩點(diǎn)的坐標(biāo)左下角的坐標(biāo):(1,0)右上角的坐標(biāo):(2,6)面積為:6請(qǐng)按任意鍵繼續(xù). . .七、總結(jié)1,構(gòu)造函數(shù)用于對(duì)對(duì)象的初始化,在定義類時(shí),如果沒有定義構(gòu)造函數(shù),系統(tǒng)將自動(dòng)生成一個(gè)簡(jiǎn)單的構(gòu)造函數(shù)。2,構(gòu)造函數(shù)沒有返回值,不允許顯示調(diào)用,創(chuàng)建對(duì)象時(shí),系統(tǒng)將自動(dòng)調(diào)用相應(yīng)的構(gòu)造函數(shù)。3,析

4、構(gòu)函數(shù)是對(duì)對(duì)象進(jìn)行最后的清理工作,它不允許有參數(shù),沒有返回值。如果沒有定義析構(gòu)函數(shù),系統(tǒng)將自動(dòng)生成。4,對(duì)象的私有成員,可以通過成員函數(shù)訪問,類外不能訪問對(duì)象的私有成員。八、附錄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輸入左下角的坐標(biāo):x1y1;cout輸入右上角的坐標(biāo):x2y2;void rectangle:show()cout兩點(diǎn)的坐標(biāo)endl;cout左下角的坐標(biāo):(x1,y1)endl;cout右上角的坐標(biāo):(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;實(shí)驗(yàn)二一、實(shí)驗(yàn)名稱類與對(duì)象二、實(shí)驗(yàn)?zāi)康募耙笫煜ぴO(shè)計(jì)簡(jiǎn)單類及測(cè)試的方法。三、實(shí)驗(yàn)環(huán)境microsoft visual studio 2010四、實(shí)驗(yàn)內(nèi)容1,設(shè)計(jì)一個(gè)人事管理類,其屬性有編號(hào)、性別、出生年月、身份證號(hào)等其中出生年月聲明為一個(gè)日期類內(nèi)嵌子對(duì)象。實(shí)現(xiàn)對(duì)成員信息的錄入和輸出。要求包括:構(gòu)造函數(shù)析構(gòu)函數(shù)、

8、復(fù)制構(gòu)造函數(shù)、內(nèi)聯(lián)成員函數(shù)、帶默認(rèn)形參值的成員函數(shù)、類的組合。2,定義一個(gè)復(fù)數(shù)類complex,是下面的程序代碼能夠工作:complex c1(3,5); /用復(fù)數(shù)5+3i初始化c1complex c2=4.5; /用實(shí)數(shù)4.5初始化c2c1.add(c2); /將c1與c2相加,結(jié)果保留在c1中c1.show(); /將c1輸出,結(jié)果應(yīng)為7.5+5i五、算法描述及實(shí)驗(yàn)步驟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)試過程及實(shí)驗(yàn)結(jié)果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請(qǐng)按任意鍵繼續(xù). . . number:7.5+5i請(qǐng)按任意鍵繼續(xù).七、總結(jié)1,類的組合 當(dāng)當(dāng)前類所使用的類還沒有定義時(shí),在當(dāng)前類中只能建立此類的引用。如果已經(jīng)定義在前,就可以直接建立對(duì)象。2,訪問子對(duì)象中的可訪問成員用“當(dāng)前類子對(duì)象成員”的形式。3,內(nèi)聯(lián)成員函數(shù):用關(guān)鍵字“inline”聲明,在程序調(diào)用內(nèi)聯(lián)成員函數(shù)時(shí),并不真正執(zhí)行函數(shù)的調(diào)用過程,如保留返回地址等處理,而是把函數(shù)代碼嵌入程序的調(diào)用點(diǎn),這樣可以減少調(diào)用成員函數(shù)的時(shí)間。4,帶默認(rèn)參數(shù)的函數(shù): 由于函數(shù)調(diào)用時(shí),實(shí)參和形參的結(jié)合是從左到右順序進(jìn)行的,因此指定默認(rèn)值的參數(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í)驗(yàn)三一、實(shí)驗(yàn)名稱數(shù)據(jù)的共享與保護(hù)二、實(shí)驗(yàn)?zāi)康募耙笳莆諏?duì)靜態(tài)成員、靜態(tài)函數(shù)、友元函數(shù)的使用方法。三、實(shí)驗(yàn)環(huán)境microsoft visual studio 2010四、實(shí)驗(yàn)內(nèi)容1,定義一個(gè)cat類,擁有靜態(tài)成員numofcat,記錄cat的個(gè)體數(shù)目;靜態(tài)成員函數(shù)getnumofcat(),讀取numofcat。2,定義boat與car兩個(gè)類,二者都有weight屬性,定義二者的友元函數(shù)gettoalweight(),計(jì)算二者的重量和。五、算法描述及實(shí)驗(yàn)步驟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)試過程及實(shí)驗(yàn)結(jié)果1, 保存源程序代碼,并聲稱解決方案。2,調(diào)試并執(zhí)行。3,輸出為:1, input the name tutuname:tutunum:1numofcat:1call staticnumofcat:1input the name huaname:huanum:2numofcat:2call staticnumofcat:2請(qǐng)按任意鍵繼續(xù). . .2,boatname:fengnum:012002weight:60carname:bennum:0054weight:80140tutu 01

20、24 90baoma 0142453 100boatname:tutunum:0124weight:90carname:baomanum:0142453weight:100190請(qǐng)按任意鍵繼續(xù)七、總結(jié)1,靜態(tài)成員,不屬于任何對(duì)象,系統(tǒng)單獨(dú)非配空間。靜態(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ù),可以通過對(duì)象名的方式訪問。3,如果一個(gè)函數(shù)被聲明為以為類的友元函數(shù),那么這個(gè)函數(shù)就可以訪問這個(gè)類中的所有成員。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ù)名。點(diǎn)擊添加編輯添加相應(yīng)的函數(shù)。六、調(diào)試過程及實(shí)驗(yàn)結(jié)果1, 保存源程序代碼,并聲稱解決方案。2,調(diào)試并執(zhí)行。3,輸出為:ab輸出如下圖:(點(diǎn)擊運(yùn)行菜單中的啟動(dòng)和停止按鈕,或者雙擊鼠標(biāo)的左右鍵,字幕會(huì)執(zhí)行相應(yīng)的動(dòng)作)七、總結(jié)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實(shí)現(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(各公司銷售點(diǎn)水果月銷售量直方圖);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 右坐標(biāo)減去左坐標(biāo)n=0; 添加的消息映射:void cgdview:onlbuttond

32、blclk(uint nflags, cpoint point) /鼠標(biāo)左雙擊函數(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) /鼠標(biāo)右雙擊函數(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);添加的啟動(dòng)及停止對(duì)應(yīng)的消息void cxxx2view:onmove() /啟動(dòng)對(duì)應(yīng)消息/ todo: add your command handler code heresettimer(1,300,null);void cxxx2view:onstop

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

溫馨提示

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

評(píng)論

0/150

提交評(píng)論