Back

/ 1 min read

C++面试题学习

开始

const用法

  • 普通变量使用const修饰后,不能再修改其值。
  • 指针变量有两种修饰,第一种const char* str;此时str是指向一个常量字符串,字符串内容不能修改。第二种char* const const_str;此时const_str本身值不能修改。
  • const修饰函数参数,表示函数内部不能修改参数的值。
  • const修饰函数返回值,表示函数返回值不能修改。