#include<cstdio> struct jie{ int x,y; jie(){} jie(int aa,int bb){ x=aa,y=bb; } }; int main(){ jie a=jie(1,2); jie b=(jie){1,2}; return 0; }