- 相关推荐
关于C语言中关键字的使用
什么是const?
常类型是指使用类型修饰符const说明的类型,常类型的变量或对象的值是不能被更新的。(当然,我们可以偷梁换柱进行更新:)
为什么引入const?
const 推出的初始目的,正是为了取代预编译指令,消除它的缺点,同时继承它的优点。
const关键字使用非常的灵活,这一点和php差别很大,php中const用来在类中定义一个常量,而在c中,const因位置不同有不同的作用,因情景不同有不同的角色,使用起来也是非常的灵活。
(1):const用来修饰普通的变量(指针变量除外)的时候,const type name 和 type const name 这两种形式是完全等价的,都表示其是常量,不能进行修改。
#includeint main(){ const int num =23; printf("result=%dn",num); num =31; printf("result=%dn",num); //报错,num是常量,不能修改}
(2):const用来修饰指针变量的时候,分为以下四种情况
1、const type *name :这种情况下,const修饰的指针变量name所指向的type类型对象,也就是说指向的这个对象是不能进行修改的,因为其是常量,而指针变量确实可以进行修改的
#includeint main(){ int tmp = 23; const int *num = &tmp; printf("result=%dn",*num); (*num) = 24; //报错,因为指针num指向的int类型的对象是不能进行修改的 printf("result=%dn",*num); }
2、type const *name :这种情况下,const修饰的指针变量name所指向的type类型对象,意思完全同上,只是颠倒了以下顺序。
#includeint main(){ int tmp = 23; int const* num = &tmp; printf("result=%dn",*num); (*num) = 24; //报错,因为指针num指向的int类型的对象是不能进行修改的 printf("result=%dn",*num); }
3、type * const name :这种情况下,const修饰的指针变量name,也就是说这个指针变量的值是不能进行修改的,但是指针变量所指向的对象确实可以修改的
#includeint main(){ int tmp = 100; int *const num = &tmp; printf("result=%dn",*num); int change = 23; num = &change; //报错,因为指针num是不能进行修改的 printf("result=%dn",*num); }
4、const type * const name :这种情况下,const修饰的指针变量name以及指针变量name所指向的对象,也就是说这个指针变量以及这个指针变量所指向的对象都是不能进行修改的
(3):const在函数中的参数的作用:
void get_value( const int num ){ num=23; //报错}
调用get_value()函数的时候,传递num参数到函数,因为定义了const,所以在函数中num是不能进行修改的
【C语言中关键字的使用】相关文章:
爱在不言中作文07-24
[经典]爱在不言中作文08-01
尽在不言中作文07-05
爱在不言中作文[热门]09-23
(合集)爱在不言中作文11篇08-11
爱在不言中作文合集【15篇】10-18
一切尽在不言中作文07-23
C++程序员03-09
一切尽在不言中作文[热]08-16
(优秀)一切尽在不言中作文10-17