随笔分类 -  c++

摘要:typedef 给类型换一个新的名字,更易读。 typedef struct book{ int no; char name[20]; } BOOK; BOOK b ; b.no = 1; b.name = 'wasoft'; typedef int INTER; INTER c; 阅读全文
posted @ 2020-03-13 13:51 头上一片天 阅读(153) 评论(0) 推荐(0)