标签: c
常量和限制指针之间有什么区别,例如:
int * const ptr, int * restrict ptr
答案 0 :(得分:7)
他们完全不同的事情。 const指针不会改变。 restrict指针将是访问对象所指向的唯一方式。
const
restrict