작성
·
215
답변 1
1
안녕하세요!
https://stackoverflow.com/questions/8504411/typedef-pointer-const-weirdness
https://stackoverflow.com/questions/34857341/typedefng-a-pointer-and-const
위 링크들에 따르면,
typedef int* pint 라고 정의 했을 때
const pint arr -> 이렇게 한다고 해서 const int* arr 가 되는 것은 아니라고 합니다.
int* const arr 가 된다고 하네요! (간접 참조로 인한 수정은 가능하나 포인터 값 그 자체는 수정 불가)
링크들 참고해보시면 좋을 것 같아요.
감사합니다^^