收藏 分享(赏)

c++-第3章---函数和作用域.ppt

上传人:天天快乐 文档编号:1140175 上传时间:2018-06-14 格式:PPT 页数:38 大小:181.50KB
下载 相关 举报
c++-第3章---函数和作用域.ppt_第1页
第1页 / 共38页
c++-第3章---函数和作用域.ppt_第2页
第2页 / 共38页
c++-第3章---函数和作用域.ppt_第3页
第3页 / 共38页
c++-第3章---函数和作用域.ppt_第4页
第4页 / 共38页
c++-第3章---函数和作用域.ppt_第5页
第5页 / 共38页
点击查看更多>>
资源描述

1、第3章 函数和作用域,3.1 函数的定义和说明 3.2 函数的调用 3.3 函数的参数传递 3.4 内联函数 3.5 带默认参数的函数 3.6 函数重载 3.7 使用C+系统函数 3.8 作用域,【 3.1 函数的定义和说明】,【 3.1.1 函数的定义】,声明函数,就是告诉编译器函数的名称、类型和形式参数。,定义函数,就是告诉编译器函数所做的工作。,在C+程序中,定义一个函数的格式如下: 类型 函数名(形式参数表) 语句序列,形式参数表由0个、1个或多个参数组成,内容如下: 类型1 形式参数名1,类型2 形式参数名2,类型n 形式参数名n,例 3.1,声明函数,一般采用声明函数原型。形式如下

2、: 类型 函数名(形式参数表);,例如: double rectanglearea(double a,double b); double rectanglearea(double,double);,【 3.2 函数的调用】,【 3.1.2 函数的声明】,函数的调用的一般形式如下: 函数名(实际参数表),函数调用:,函数的返回值是通过返回语句return来实现的。return语句的一般格式如下: return 表达式;,例 3.2,double rectanglearea(double a, double b); /函数声明void main() double length, width; co

3、utlengthwidth; cout the area of the rectangle is rectanglearea (length, width); / length和width是实参,分别将各自的值赋给形参a和b coutendl;double rectanglearea(double a, double b) / a和b是形参 double s; s = a * b; return s;,int a = 20; int s; s = area(+a, a * 2); coutsendl;int area(int a, int b) return (a * b);,例 3.4,【

4、3.3 函数的参数传递 】,cout x= x t y = yendl; swap(x, y); cout In main function: endl; cout After swap: ; cout x= x t y = yendl;void swap(int a, int b) int temp; cout In Swap function: endl; cout Before swap: ; cout a= at b= bendl; temp = a; a = b; b = temp; cout After swap: ; cout a= a t b= bendl;,【 3.4 内联函

5、数】,形式如下:inline 类型 函数名(形参表) ./函数体,【 3.5 带默认形参值的函数】,例如: double area(double a=2.6,double b=4);double area(double a,double b=4);double area(double=2.6,double =4);,double area(double a=2.6,double b);double area(double =2.6,double b,double=4);,int area; area = volume(l, w, h); coutendlthe area of cube equ

6、al:t area; coutendlendl; area = volume(l, w); /h取默认的值 coutendl the area of cube equal:tarea; coutendlendl; area = volume(l); /w和h取默认的值 coutendl the area of cube equal:tarea; coutendlendl;int volume(int length, int width, int height) cout The information of the cube is:tlength=t length; cout twidth=t

7、width theight=t length2width2; coutendl; total = totalarea(area(length1, width1), area(length2, width2); cout The sum of the two rectangless area is : totalendl; else total = totalarea(area(length1, width1); cout The sum of the rectangles area is : totalendl; int area(int a,int b) return (a*b); int

8、totalarea(int a,int b) return (a + b); ,【3.6 函数重载】,例如:int fun(int, int); int fun(int);long fun(int, long);long fun(long);,例如:int fun1(int x, int y); long fun1(int x, int y);,例如:int fun(int a,int b);int fun(int x,int y);,例 3.9,int add(int x, int y) cout In int add(int x, int y) endl; coutx+y=; return

9、(x + y); /end of int addlong add(long x, long y) cout In long add(long x, long y) endl; cout x + y =; return(x + y); /end of long addfloat add(float x, float y) cout In float add(float x, float y) endl; cout x + y =; return (x + y); /end of float adddouble add(double x, double y) cout In double add(

10、double x, double y) endl; coutx+ya; if(a0) int b; / b的作用域起始处 . / b的作用域结束处 / a的作用域结束处,if语句,可以在语句中进行条件测试的表达式内声明标识符。,例如: if(int i=f() /标识符i的作用域起始处 i=i*2; else i=100; /标识符i的作用域结束处 couti; /错误,标识符i在其作用域外不可见,例如: for(int i=0;i5;) /标识符i的作用域起始处 i+; /标识符i的作用域结束处 couti; /错误,标识符i在其作用域外不可见,3. 函数作用域,例如:void fun() double a; int a; .;,例如:void fun() int a; int a; .;,在不同作用域内,允许声明同名标识符。,例如:void fun() double a(3); .; int a; .; .;,例 3.11,cout a=a t b=b t c=c; coutendl; a=b; int c; c=b; cout a=a t b=b tc=c; coutendl; cout a=a t b=b t c=c; coutendl; cout a=a t b=b t c=c;coutendl;,【 3.8.2 局部变量与全局变量】,

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 中等教育 > 小学课件

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报