- 1、本文档共33页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
必威体育精装版CC学习范本第十三章C特有功能与字串
必威体育精装版C C++學習範本;13-1 inline 函式 ;inline 函式寫法和一般函式一樣,必須在使用前先宣告,且必須在宣告或定義函式最前面加上 inline。
若 inline 函式內的敘述太長或是遞迴函式,編譯器會視為一般函式處理。
使用 inline 函式由於有 argument_list(引數串列)可對傳入資料的資料型態檢查是否有錯誤;使用define 巨集則無法對資料型態做檢查。
return_type 是指函式傳回結果的資料型態。
function_name 代表函式名稱。;inline int getsum(int, int) ; // 宣告
inline int getsum (int _price,int _qty) // 定義
{
return (_price*_qty);
}
int main (int argc, char *argv[])
{
int sum = getsum(2, 3) ; // 呼叫
return EXIT_SUCCESS;
};// FileName : inlinefun.cpp
01 #include cstdlib
02 #include iostream
03 #include iomanip
04 using namespace std;
06 inline void getsum(int, int) ;
07 int main(int argc, char *argv[])
08 {
09 int price, qty;
10 cout 全OK書籍購物系統 endl endl;
11 cout 輸入單價: ;
12 cin price ;
13 cout 輸入數量: ;
14 cin qty;; getsum(price, qty) ;
system(PAUSE);
17 return EXIT_SUCCESS;
18 }
19 inline void getsum(int _price,int _qty)
20 {
21 if (_qty=100)
22 {
23 cout 打八折!!一共 _price*_qty*0.8 元!!\n\n ;
24 }
25 else
26 {
27 cout 謝謝惠顧!!一共 _price*_qty 元!!\n\n ;
28 }
29 }
;// FileName : funOverloading.cpp
01 #include cstdlib
02 #include iostream
03 #include iomanip
04 using namespace std;
05 int max(int, int);
06 float max(float, float, float);
08 int main(int argc, char *argv[]) {
10 int x1=15,y1=75;
11 float x2=56.4,y2=78.5,z2=24.8,;
12 cout max(15,75)= max(x1,y1) endl;
13 cout max(56.4,78.5,24.8)= max(x2,y2,z2) endl endl;
15 system(PAUSE);
16 return EXIT_SUCCESS;
17 };19 int max(int a, int b)
20 {
21 int max1;
22 max1=(ab)? a:b ;
23 return (max1);
24 }
26 float max(float a, float b, float c)
27 {
28 float max2;
29 if (ab) {
31 if(bc)
32 max2=c;
33 else
34 max2=b;
35 }
36 else {
38 if(ac)
39 max2=c;
40 else
41 max2=a;
42 }
43 return (max2);
44 };13-3 參考變數 ;一般變數、參考變數、指標變數的差異: ;//
您可能关注的文档
最近下载
- (完整版)电气设备安装标准规范.pdf
- GB∕T 13861-2022生产过程危险和有害因素分类、解读与示例说明清单【危险源识别工具】(雷泽佳-2024A0).doc
- 2021年中国光大银行校园招聘在线测试笔试题考试真题笔经.doc
- 新浪·按键精灵开发者1级认证参考解析.docx VIP
- 2023年福建省各地中考语文模拟卷【文学类文本阅读题解及答案解析】汇集.docx VIP
- 皮亚杰认知发展论.ppt VIP
- 2.1 几代中国人的美好夙愿 课件初中读本.ppt
- 流域化“厂网一体”运营模式的探索与实践.pdf
- 半导体制造技术离子注入工艺.pptx
- 全国普通话水平测试用普通话词语表(表一+表二).pdf
文档评论(0)