const常量和指標搭配

2021-10-03 14:27:58 字數 559 閱讀 2950

const常量和指標搭配:

1.const int* p 限制根據指標修改對應的記憶體

2.int const* p 限制根據指標修改對應的記憶體

3.int* const p

情況1.

#include

#include

intmain()

** 以上**含有const int* p 限制根據指標修改對應的記憶體 **

情況2.

#include

#include

intmain()

以上**含有int const p 限制根據指標修改對應的記憶體*

情況3.

#include

#include

intmain()

以上**含有int const p 限制修改指標的指向*

const常量 指向常量的指標和常量指標

1 先看const常量的情況 const int a 2 int const b c c是已經宣告過的整型 兩者都可以。本地的const常量必須在第一次宣告時就初始化,用變數或常量初始化都可以,只是初始化一次以後它的值就不能再改變了,此所謂const的含義。2 接著看指向常量的指標 const in...

指標和const限定符搭配

指標和const搭配不同,對所操作的物件能進行的操作也不同,從組合上看,無非有三種組合 其中type可為int char等基本資料型別,也可為構造資料型別 1 const type ptr 我們稱此種組合叫指向const物件的指標 linux核心中有很多函式引數就是此種型別,比如 void memc...

const指標和指向常量的指標

1.const int p 2.const int p 3.int const p 4.int const p 5.const int const p 6.int const const p 乙個簡便方法 從由往左讀,遇到p就替換為 p is a 遇到 就替換為 point to 其餘不變。1.co...