Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

Recent questions tagged const

0 votes
439 views
1 answer
    const int * :指针本身可变,指向的值不可变 int * const :指针本身不可变,指向的值可变 转化 const int * -> int * const 会报错 转化 int * const -> const int * 可以进行 从语义上 ... 不可行?考虑了一下,可能源自于 指针和值不是一个层次上的东西 ,但又不知道应该怎么说清楚呢?...
asked Feb 5, 2021 in Technique[技术] by 深蓝 (71.8m points)
To see more, click for the full list of questions or popular tags.
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...