搜尋

首頁  >  問答  >  主體

c++ - 关于指针的这句英文应该怎么解释?

The type of pointer matters not when you have to read the adress,it matters when you dereference or when you perform pointer arithmetic.(The type of pointer play role when you try to dereference or when you try or perform pointer arithmetic.)
能举一个通俗的例子解释下吗?

伊谢尔伦伊谢尔伦2767 天前549

全部回覆(1)我來回復

  • 伊谢尔伦

    伊谢尔伦2017-04-17 11:37:55

    對於一個指標

    • 類型體現在指標運算,例如 int *i;i++;此時i移動了4 bytes,若是char *s;s++;指標移動 1 byte.
    • 型別也體現在解引用,例如上一條*i會讀取以i位址開頭的4 bytes內容,而s則只讀取s為首位址的的1 byte內容.

    回覆
    0
  • 取消回覆