CS1L4——常量
关键字
常量
常量关键字 const
常量必须初始化,不能被修改
变量不一定需要初始化
常量的作用多用于申明常用不变的变量
1 2 3 4 5 6 7 8 9 10 11
|
const int i1 = 1;
int i2 = 2; Console.WriteLine(i1+"是常量"+i2+"是变量"); Console.WriteLine("常量必须初始化,不能被修改"); Console.WriteLine("变量不一定需要初始化"); Console.WriteLine("常量的作用多用于申明常用不变的变量");
|
输出:
1 2 3 4
| 1是常量2是变量 常量必须初始化,不能被修改 变量不一定需要初始化 常量的作用多用于申明常用不变的变量
|
本课源代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| namespace lesson4常量 { internal class Program { static void Main(string[] args) { #region 常量 const int i1 = 1; int i2 = 2; Console.WriteLine(i1+"是常量"+i2+"是变量"); Console.WriteLine("常量必须初始化,不能被修改"); Console.WriteLine("变量不一定需要初始化"); Console.WriteLine("常量的作用多用于申明常用不变的变量"); #endregion } } }
|