???????????
????????? ???????[ 2017/3/16 10:51:27 ] ??????????? ???? ???????????
????????????????????(const pointer)?
??????TM???????????????????????????????????
????????????些????
?????????????
???????????????
????????????????
??????????????????
?????????????????
??????????????????????????????????????????????????些???????????????椋�??????????????????????????????椋�???????????????xxx????????
???????????:
????int a[10] = { 0 };
????int * ptr = NULL;
????int * const cptr = NULL; // const pointer
????int const * ptrc = NULL; // pointer to const
????(???????????????????????????????????????????????????????????const pointer ?? pointer to const)
??????????????
??????????????????a ???????? type[size]
??????小?sizeof(a) = sizeof(int[10])
??????C/C++??????a????????????????????????????
????????????&a??&a????????????&?????????????????&a?????????int[10]??????????????????(&a + 1)????????a????????????sizeof(int [10])??
????????a???(????????)?????????????????????????????????????????????????????????????
????const pointer
?????????????????????????????????????????????????????????int * const??
?????????????????????????????些?梅???????????????????????些?????????????????????????????
???????????????????????????????????
????void f1(int a*);
????void f2(int a[]);
????void f3(int a[10]);
???????????2??3????????????椋�????????????????????????????????????????????????
????// ????????????????????????????????尾????????????????????
????void f3(int a[10])
????{
????a += 10;
????}
???????卸?????????????胁?????
????int b = *(a + 1);
????int c = *(ptr + 1);
????*(a + 1)??*(ptr + 1)???????????????(??????????)??????些??????????泻??????????????
????????C??????些?梅???????芯????宀�????????????????????????????C??????伪??????????????????????????+????????????????????????????????????????????????????????????????????????????????????????????
??????

???路???
??????????????????
2023/3/23 14:23:39???写?貌??????????
2023/3/22 16:17:39????????????????????些??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???路???????路
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11