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

c++中的struct关键字详解

时间:2020-08-19 19:42:50      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:tst   space   lock   ext   pre   其他   定义   struct   详解   

struct关键字是用来定义一个新的类型,这个新类型里面可以包含各种其他类型,称为结构体。

 

#include <stdio.h>

typedef struct {
        int a;
        int b;
}Stu;

Stu getStu(int x, int y)
{
        Stu result;
        result.a = x;
        result.b = y;
        return result;
}

int main()
{
        int a = 2, b = 3;
        Stu test = getStu(a, b);
        printf("%d %d\n", test.a, test.b);
        return 0;
}

 

 

 

c++中的struct关键字详解

标签:tst   space   lock   ext   pre   其他   定义   struct   详解   

原文地址:https://www.cnblogs.com/shierlou-123/p/13516570.html

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