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.
#include <iostream> #include <string> using namespace std; int main() { string *ptr = new string("fff"); string * ptr1 = new string("ffffff"); cout << ptr << endl << ptr1 << endl; }
ptr 和 ptr1 在表示上有何不同,*ptr 与 *[space]ptr 的含义相同吗?
是的,这意味着同样的事情。在这种情况下(或者实际上,在大多数情况下,在 C++ 中),空格没有任何区别。