码迷,mamicode.com
首页 > 编程语言 > 详细

C++ typedef的一个用法

时间:2019-01-21 12:10:38      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:def   ring   col   names   语言   ios   title   print   cstring   

1.不适用typedef:

#include <iostream>
#include <cstring>
using namespace std;
struct Books
{
    char  title[50];
    char  author[50];
    char  subject[100];
    int   book_id;
};

int main()
{
    struct Books book;

    strcpy(book.title, "C 教程");
    strcpy(book.author, "Runoob");
    strcpy(book.subject, "编程语言");
    book.book_id = 12345;

    printf("书标题 : %s\n", book.title);
    printf("书作者 : %s\n", book.author);
    printf("书类目 : %s\n", book.subject);
    printf("书 ID : %d\n", book.book_id);
    system("pause");
    return 0;
}

2.使用typedef:

#include <iostream>
#include <cstring>
using namespace std;
typedef struct Books
{
    char  title[50];
    char  author[50];
    char  subject[100];
    int   book_id;
};

int main()
{
    struct Books book;

    strcpy(book.title, "C 教程");
    strcpy(book.author, "Runoob");
    strcpy(book.subject, "编程语言");
    book.book_id = 12345;

    printf("书标题 : %s\n", book.title);
    printf("书作者 : %s\n", book.author);
    printf("书类目 : %s\n", book.subject);
    printf("书 ID : %d\n", book.book_id);
    system("pause");
    return 0;
}

 

C++ typedef的一个用法

标签:def   ring   col   names   语言   ios   title   print   cstring   

原文地址:https://www.cnblogs.com/yibeimingyue/p/10297819.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!