Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 C。
假设我有一个指向整数的指针 *myptr
int *myptr;
那么有什么区别:
*myptr++
和...
*(myptr++)
谢谢丹
由于++具有高于 的优先级*,因此两者之间没有区别。
++
*