What is the difference between a static and const variable?

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

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

17条回答
  •  [愿得一人]
    2020-11-29 18:50

    static keyword defines the scope of variables whereas const keyword defines the value of variable that can't be changed during program execution

提交回复
热议问题