How does a 'const struct' differ from a 'struct'?

后端 未结 6 1506
刺人心
刺人心 2020-12-23 13:57

What does const struct mean? Is it different from struct?

6条回答
  •  一生所求
    2020-12-23 14:02

    I believe that a const struct cannot be modified. In other words, all fields of a struct which is declared const are non-modifiable.

提交回复
热议问题