What is the difference between a static and const variable?

前端 未结 17 1759
天命终不由人
天命终不由人 2020-11-29 18:39

Can someone explain the difference between a static and const variable?

17条回答
  •  遥遥无期
    2020-11-29 18:59

    Static variables are common across all instances of a type.

    constant variables are specific to each individual instance of a type but their values are known and fixed at compile time and it cannot be changed at runtime.

    unlike constants, static variable values can be changed at runtime.

提交回复
热议问题