C++中const的特性的使用
目录(作用):
1:修饰变量,说明该变量不可以被改变;
2:修饰指针,分为只想常量的指针和自身是常量的指针
3:修饰引用,指向常量的引用,用于修饰形参,即避免了拷贝,有避免了函数对值的修改;
4:修改成员函数:说明该成员函数内不能修改成员变量。
5:指针与引用
正文:
以下是对各种情况的示例:
//注:1:const修饰的引用cj的值且引用的对象无法修改无法修改,但是引用的i是可修改的 #includeusingnamespacestd; intmain(){ inti=1; constint&cj=i; cout<<"cj:"< exitedwithstatus0
//注:常量引用,本身也要是常量才行: #includeusingnamespacestd; intmain(){ constinti=4; constint&ck=i;//正确,常量对象绑定到const引用 cout<<"ck="< exitedwithstatus0
//注:const的隐式转换: #includeusingnamespacestd; intmain(){ doubleb=2.14; constint&a=b; //会进行如下转换: //inttemp=b; //constint&a=temp; //所以,给b进行赋值,a可能 cout<<"a="<exitedwithstatus0
//注:修饰成员函数_1: classDate { private: intm_year; intm_month; intm_day; public: intGetDay(void)const { m_day=7; returnm_day;//修饰的情况下,不能对成员变量进行修改; } }; //voidGetDay(void)const //{ //returnm_day; //} intmain(){ doubleb=2.14; constint&a=b; //会进行如下转换: //inttemp=b; //constint&a=temp; //所以,给b进行赋值,a可能 cout<<"a="<exitedwithstatus0
//注:修饰函数_2 #includeusingnamespacestd; classDate { private: intm_year; intm_month; mutableintm_day;//通过被mutable修改的成员变量,就可以被修改了 public: intGetDay(void)const { m_day=7; returnm_day; } }; //voidGetDay(void)const //{ //returnm_day; //} intmain(){ doubleb=2.14; constint&a=b; //会进行如下转换: //inttemp=b; //constint&a=temp; //所以,给b进行赋值,a可能 cout<<"a="<exitedwithstatus0
//注:const修饰的指针 #includeusingnamespacestd; intmain(){ constint*p=NULL;//这两种修饰的是*p指向的值 //intconst*p=NULL; inta=9; p=&a;//修改了p指向的地址,任然没有出错 cout<<"*p="<<*p< exitedwithstatus0
//注:const修饰的引用 #includeusingnamespacestd; intmain(){ intx=3; constint&y=x; cout<<"y="< exitedwithstatus0
到此这篇关于C++中const的特性的使用的文章就介绍到这了,更多相关C++const的特性内容请搜索毛票票以前的文章或继续浏览下面的相关文章希望大家以后多多支持毛票票!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。