开发者学堂课程【C语言学习教程:const 关键字】学习笔记,与课程紧密联系,让用户快速学习知识。
课程地址:https://developer.aliyun.com/learning/course/387/detail/4930
const 关键字
目录
一、具体内容
二、总结
一、具体内容
例如: void Print(const int_ nVal)
{
printf( "%d\n",nVal);//正确,可以使用参数的值
_nVal = 10; //错误,不能修改参数的值
}
1.范例:
#include< stdio. h>
void testFunc(const int а){
// a= 19 ;
}
int main( int argc, const char *argv[]){
// const 可以把一块内存声明为只读属性
const int a = 9;
// const 修饰变量必须进行初始化,不然没有意义
const int b;
int number = 10;
testFunc (number) ;
number = 19;
// insert code here...
printf("Hello,World!\n”);
return 0;
}
二、总结
const 修饰函数参数,表示函数内部不能对函数参数进行修改