比如:
struct node{ int a,b,c; } vector<node> vec; int main(){ vec.push_back((node){1,2,3}); return 0; }