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++ 中的 char* pt 和 char *pt 有区别吗?
键入* pt 还是键入 *pt?
如标题,提前致谢。
不,但要小心char* a, b;在这个语句中只有 a 是一个指针。
char* a, b;
它们在功能上没有区别。