假设我声明了一个新的 C++ 结构类型:
struct my_struct {
int a;
int b;
};
我可以通过以下方式创建此结构类型的新实例:
my_struct foo;
或者
struct my_struct foo;
如果两者都有效,有什么区别吗?
假设我声明了一个新的 C++ 结构类型:
struct my_struct {
int a;
int b;
};
我可以通过以下方式创建此结构类型的新实例:
my_struct foo;
或者
struct my_struct foo;
如果两者都有效,有什么区别吗?