計(jì)算機(jī)程序設(shè)計(jì)基礎(chǔ)課件:結(jié)構(gòu)體_第1頁
計(jì)算機(jī)程序設(shè)計(jì)基礎(chǔ)課件:結(jié)構(gòu)體_第2頁
計(jì)算機(jī)程序設(shè)計(jì)基礎(chǔ)課件:結(jié)構(gòu)體_第3頁
計(jì)算機(jī)程序設(shè)計(jì)基礎(chǔ)課件:結(jié)構(gòu)體_第4頁
計(jì)算機(jī)程序設(shè)計(jì)基礎(chǔ)課件:結(jié)構(gòu)體_第5頁
已閱讀5頁,還剩26頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

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

文檔簡介

結(jié)構(gòu)體本章內(nèi)容第一節(jié)結(jié)構(gòu)體類型第二節(jié)結(jié)構(gòu)體變量第三節(jié)結(jié)構(gòu)體數(shù)組第四節(jié)結(jié)構(gòu)體指針變量

結(jié)構(gòu)體類型是一種構(gòu)造數(shù)據(jù)類型,用于處理類型不同的一組相關(guān)數(shù)據(jù)。結(jié)構(gòu)體類型的定義格式為:struct結(jié)構(gòu)體名{

數(shù)據(jù)類型1成員名1;

數(shù)據(jù)類型2成員名2;……

數(shù)據(jù)類型n成員名n;};第一節(jié)結(jié)構(gòu)體類型說明:(5)成員的數(shù)據(jù)類型可以是另外已定義的結(jié)構(gòu)體類型。(4)結(jié)構(gòu)體類型的定義以大括號后面的分號作為結(jié)束。(3)成員的數(shù)據(jù)類型可以是int、float、char等基本數(shù)據(jù)類型,也可以是數(shù)組、指針。(2)結(jié)構(gòu)體名和成員名的命名規(guī)則與變量名相同。(1)結(jié)構(gòu)體類型中包含的數(shù)據(jù)稱為結(jié)構(gòu)體的成員。一、結(jié)構(gòu)體變量的定義定義結(jié)構(gòu)體變量通常有三種方法。第二節(jié)結(jié)構(gòu)體變量1、先定義結(jié)構(gòu)體類型,再定義結(jié)構(gòu)體變量

structstudent { intnum; charname[20]; charsex; intage; floatscore; }; studentstu;//也可以寫為structstudentstu;定義了結(jié)構(gòu)體類型student,和一個(gè)student類型的結(jié)構(gòu)體變量stu。2、定義結(jié)構(gòu)體類型的同時(shí)定義結(jié)構(gòu)體變量

structstudent { intnum; charname[20]; charsex; intage; floatscore; }stu1,stu2;定義了結(jié)構(gòu)體類型student和兩個(gè)student類型的結(jié)構(gòu)體變量stu1和stu2。3、直接定義結(jié)構(gòu)體變量,省略結(jié)構(gòu)體類型名struct { intnum; charname[20]; charsex; intage; floatscore; }stu;定義了一個(gè)結(jié)構(gòu)體變量stu。二、結(jié)構(gòu)體變量的初始化結(jié)構(gòu)體變量可以在定義時(shí)進(jìn)行初始化。將結(jié)構(gòu)體變量各成員的初始值按順序放在一對大括號中,中間用逗號分隔。structstudent { intnum; charname[20]; charsex; intage; floatscore; };studentstu={23010109,"XiaoMing",'M',18,86.5};三、結(jié)構(gòu)體變量的使用使用結(jié)構(gòu)體變量分為使用結(jié)構(gòu)體變量的成員和使用結(jié)構(gòu)體變量整體。1、結(jié)構(gòu)體變量成員的使用結(jié)構(gòu)體變量成員的表示形式為:結(jié)構(gòu)體變量名.成員名其中“.”是成員運(yùn)算符。程序段11-1intmain(){

structstudent { intnum; charname[20]; charsex; intage; floatscore; };

studentstu; cout<<"輸入學(xué)號:";cin>>stu.num; cin.get();

cout<<"輸入姓名:";cin.get(,20); cout<<"輸入性別:";cin>>stu.sex; cout<<"輸入年齡:";cin>>stu.age; cout<<"輸入成績:";cin>>stu.score; if(stu.score>=60) cout<<stu.num<<''<<<<"通過考試"<<endl; else cout<<stu.num<<''<<<<"未通過考試"<<endl; return0;}structdate { intyear; intmonth; intday; }; structstudent { intnum; charname[20]; charsex; datebirthday; floatscore; }s; s.birthday.year=2023;對于成員是其他結(jié)構(gòu)體類型的結(jié)構(gòu)體變量,要連續(xù)使用成員運(yùn)算符來對最低級的成員進(jìn)行操作。2、結(jié)構(gòu)體變量整體的使用相同類型的結(jié)構(gòu)體變量之間可以進(jìn)行整體賦值。

structstudent { intnum; charname[20]; charsex; intage; floatscore; }; studentstu1={23010109,"XiaoMing",'M',18,86.5},stu2;

stu2=stu1;不同類型的結(jié)構(gòu)體變量間不能進(jìn)行賦值。一、結(jié)構(gòu)體數(shù)組的定義定義結(jié)構(gòu)體數(shù)組通常有三種方法。第三節(jié)結(jié)構(gòu)體數(shù)組1、先定義結(jié)構(gòu)體類型,再定義結(jié)構(gòu)體數(shù)組

structstudent { intnum; charname[20]; charsex; intage; floatscore; }; studentstu[5];//也可以寫為structstudentstu[5];定義了結(jié)構(gòu)體類型student,和student類型的結(jié)構(gòu)體數(shù)組stu,數(shù)組有5個(gè)元素,每個(gè)元素都是student類型的結(jié)構(gòu)體變量。2、定義結(jié)構(gòu)體類型的同時(shí)定義結(jié)構(gòu)體數(shù)組

structstudent { intnum; charname[20]; charsex; intage; floatscore; }stu[5];定義了結(jié)構(gòu)體類型student與student類型的結(jié)構(gòu)體數(shù)組stu。3、直接定義結(jié)構(gòu)體數(shù)組,省略結(jié)構(gòu)體類型名

struct { intnum; charname[20]; charsex; intage; floatscore; }stu[5];定義了一個(gè)結(jié)構(gòu)體數(shù)組stu,結(jié)構(gòu)體類型沒有名稱。二、結(jié)構(gòu)體數(shù)組的初始化結(jié)構(gòu)體數(shù)組可以在定義時(shí)進(jìn)行初始化。數(shù)組每個(gè)元素的初始值都放在一對大括號中,大括號內(nèi)按成員的順序排列初始值。structstudent{ intnum; charname[20]; charsex; intage; floatscore; }; studentstu[3]={{23010101,"FanHui",'F',18,74},{23010103,"LiWeiyan",'F',19,95},{23010109,"XiaoMing",'M',18,86.5}};三、結(jié)構(gòu)體數(shù)組的使用1、結(jié)構(gòu)體數(shù)組元素成員的使用使用結(jié)構(gòu)體數(shù)組元素的成員也通過成員運(yùn)算符“.”。例如stu[0].num表示數(shù)組第一個(gè)元素stu[0]的成員num。程序段11-2

structstudent { charname[20];intnum; floatscore; }stu[3]; inti,m=0; for(i=0;i<3;i++) { cout<<"輸入學(xué)生"<<i+1<<"的信息:"<<endl; cout<<"姓名:";cin.get(stu[i].name,20); cout<<"學(xué)號:";cin>>stu[i].num; cout<<"成績:";cin>>stu[i].score; cin.get(); } for(i=0;i<3;i++)//成績最高的數(shù)組元素下標(biāo)保存在變量m中

{ if(stu[i].score>stu[m].score) m=i; } cout<<"成績最高的是:"<<endl; cout<<"學(xué)號為"<<stu[m].num<<"的"<<stu[m].name<<endl;2、結(jié)構(gòu)體數(shù)組元素整體的使用相同類型的結(jié)構(gòu)體數(shù)組元素之間可以進(jìn)行整體賦值。

structstudent { charname[20];intnum; floatscore; }stu1[3]={{"LiHuifen",23010102,82.5},{"XiaoMing",23010103,71},{"ZhangGuo",23010105,90}}; studentstu2[5],stu3; stu3=stu1[0]; stu2[3]=stu1[1];一、結(jié)構(gòu)體指針變量的定義結(jié)構(gòu)體指針變量的定義格式為:結(jié)構(gòu)體類型名*結(jié)構(gòu)體指針變量名;

structstudent { charname[20];intnum; floatscore;};student*p;第四節(jié)結(jié)構(gòu)體指針變量結(jié)構(gòu)體指針變量p可以指向student類型的結(jié)構(gòu)體變量。二、指向結(jié)構(gòu)體變量的結(jié)構(gòu)體指針變量structstudent { charname[20]; intnum; floatscore; }stu; student*p; p=&stu; (*p).score=81.5;//為結(jié)構(gòu)體變量stu的成員score賦值將結(jié)構(gòu)體變量所占內(nèi)存的首地址賦值給結(jié)構(gòu)體指針變量后,指針變量就指向了該結(jié)構(gòu)體變量,然后可以通過指針變量訪問結(jié)構(gòu)體變量的成員。例如p->score表示指針變量p所指向的結(jié)構(gòu)體變量的成員score。因此,訪問結(jié)構(gòu)體變量的成員時(shí),以下三種形式是等價(jià)的:訪問結(jié)構(gòu)體變量的成員還可以使用指向運(yùn)算符“->”,它由“-”和“>”兩個(gè)符號組成,優(yōu)先級和成員運(yùn)算符相同。結(jié)構(gòu)體變量.成員名(*結(jié)構(gòu)體指針變量).成員名結(jié)構(gòu)體指針變量->成員名程序段11-3#include<iostream>#include<string.h>usingnamespacestd;intmain(){

structstudent { charname[20]; intnum; floatscore; }stu;

student*p;

p=&stu; strcpy_s(,"WangYue");//為結(jié)構(gòu)體變量stu的成員賦值

(*p).num=23010111; p->score=81.5; cout<<<<"同學(xué)的學(xué)號是"<<stu.num<<",成績是"<<stu.score<<endl; cout<<(*p).name<<"同學(xué)的學(xué)號是"<<(*p).num<<",成績是"<<(*p).score<<endl; cout<<p->name<<"同學(xué)的學(xué)號是"<<p->num<<",成績是"<<p->score<<endl;return0;}三、指向結(jié)構(gòu)體數(shù)組的結(jié)構(gòu)體指針變量structstudent { charname[20]; intnum; floatscore; }stu[3]; student*p; p=stu;將結(jié)構(gòu)體數(shù)組的首地址賦給結(jié)構(gòu)體指針變量,使指針變量指向該結(jié)構(gòu)體數(shù)組,然后就可以用指針變量訪問數(shù)組元素。程序段11-4

structstudent { charname[20]; intnum; floatscore; }stu[3];

student*p=stu; floatmax; max=p->score; for(;p<stu+3;p++) { cout<<"輸入三個(gè)學(xué)生的信息:"<<endl; cout<<"姓名:";cin.get(p->name,20); cout<<"學(xué)號:";cin>>p->num; cout<<"成績:";cin>>p->score; cin.get(); } for(p=stu;p<stu+3;p++) { if(p->score>max) max=p->score; } cout<<"--------------------"<<endl; cout<<"最高分是:"<<max<<endl;四、結(jié)構(gòu)體指針變量作為函數(shù)參數(shù)使用結(jié)構(gòu)體指針變量作為函數(shù)參數(shù),函數(shù)調(diào)用時(shí)由實(shí)參向形參只傳遞一個(gè)指向結(jié)構(gòu)體變量的指針,可以提高運(yùn)行效率。程序段11-5structstudent{ charname[20]; intnum; floatscore; chargrade;};voidfunc(student*sp){ student*t; t=sp; for(;s

溫馨提示

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

評論

0/150

提交評論