传递给function1和function2的区别是什么?
struct Node { int data; struct Node *next; }; void function1(struct Node *start) { // ... } void function2(Node *start) { // ... }
c++ struct scope declaration
c++ ×1
declaration ×1
scope ×1
struct ×1