const是底层的,是什么意义

const是底层的,是什么意思?
在书中不停地看到const是底层的,是什么意思?难道说是和int、double这样的类型是一个意思?
------解决方案--------------------
顶层const表示的是任意对象是常量,而底层const则与指针和引用这类的复合类型有关,表示的是指针指向的对象是常量。对于引用,const引用都是底层。

例如const int * const p,左边的const是底层const,右边的是顶层const