顶层const和底层const的区别

来源:互联网 发布:unity3d地编教程 编辑:程序博客网 时间:2024/06/09 15:48

这个概念一直理解的挺混乱的

今天看到知乎上说看英文原版容易理解

果然简洁易懂

2.4.3.Top-Level const
As we’ve seen, a pointer is an object that can point to a different object.

As a result,we can talk independently about whether a pointer is const and whether the objects
to which it can point are const.

We use the termtop-level const to indicate that the
pointer itself is a const.

When a pointer can point to a const object, we refer to
that const as alow-level const.


顶层const就是指过去的地址是const

顶层就是指过去的东西是const

哎呀,一说中文又混乱了。。。以英文为主吧

0 0