结构体:struct 和 typedef struct应该以及结构体的构造函数 区别

主要记录 struct 和 typedef struct的笔记

参考博文
解释struct 构造函数的博文

# include <iostream>
using namespace std;
struct Student
{
    int age;
}stu1;
int main()
{
    stu1.age = 25;
    cout << stu1.age << endl;
    system("pause");
}
# include <iostream>
using namespace std;
typedef struct Student
{
    int age;
}stu2;
int main()
{
    stu2 L;
    L.age = 25;
    cout << L.age << endl;
    system("pause");
}

使用时可以直接访问stu1.a
但是stu2则必须先 stu2 s2;

结构体和类的区别

参考博文
结构体 构造函数的实现

# include <iostream>
using namespace std;
typedef struct Student
{
    Student()
    {
        age = 0;
        high = 0;
    };
    Student(int age1, double high1)
    {
        age = age1;
        high = high1;
    }
    int age;
    double high;
}stu1;
int main()
{
    stu1 L;
    cout << L.high << endl;
    system("pause");
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值