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.
给定结构的以下初始化:
void f() { Struct s {}; ... }
这将始终进行聚合初始化,还是会Struct()调用构造函数,如果它是显式定义的?
Struct()