定义structInitMember{intfirst;doublesecond;charthird;floatfour;};方法一:定义时赋值structInitMembertest{10,3.141590,"methodone",0.25};需要注意对应的顺序,不能错位。方法二:定义后逐个赋值structInitMembertest;test.first10;test.second3.141590;test.third"methodtwo";test.four0.25;因为是逐个确定的赋值,无所谓顺序啦。方法三:定义时乱序赋值(C风格)这种方法类似于第一种方法和第二种方法的结合体...