关于Const用法详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于Const用法详解相关的知识,希望对你有一定的参考价值。

const 
1. 限定符声明变量只能被读 
  const int i=5; 
  int j=0; 
  ... 
  i=j;  //非法,导致编译错误 
  j=i;  //合法 
2. 必须初始化 
  const int i=5;    //合法 
  const int j;      //非法,导致编译错误 

以上是关于关于Const用法详解的主要内容,如果未能解决你的问题,请参考以下文章

C#中const用法详解

C++中的const成员函数(函数声明后加const,或称常量成员函数)用法详解

strtok/atoi/atof/atol函数用法 详解

const详解

Kotlin---------------const详解

C语言 const使用详解