定义一个Person类型的结构体struct Person{ int age; double height; }; struct Person p; //结构体可以通过点语法来取出成员变量p.age = 18; ...
確定! 回上一頁