OC中的const

//const的作用

//1.const修饰的变量就会变成只读的,也就是变成了常量

//2.const只修饰右边的内容

 

1.只读

 

 

2.只修饰右边的内容

 int const *a1; //a1是变量 *a1是常量
 const int * const a2; //a2是常量 *a2也是常量

  

 

 

 

posted @ 2016-01-15 11:38  —__MOMO__—  阅读(346)  评论(0编辑  收藏  举报