在C++中,结构体可以通过以下几种方式进行初始化:
struct Person {
std::string name;
int age;
};
Person p = {"John", 30};
Person p = {};
struct {
std::string name;
int age;
} p = {"John", 30};
struct Person {
std::string name;
int age;
Person(const std::string& n, int a) : name(n), age(a) {}
};
Person p("John", 30);
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c++中tuple的用法是什么