03--c++养成之路(结构,联合,枚举)

  • 声明或定义结构体变量,可以省略struct(内部可以定义函数)--------------C++结构
  • 声明或定义联合变量,可以省略union(支持匿名联合)------------------------C++联合
  • 声明或定义枚举变量,可以省略enum(独立类型和整型不能隐式相互转换)---------C++枚举

结构,联合,枚举代码学习:

#include<iostream>
using namespace std;
#if 0
struct Student//结构体--在c++中可省略关键字struct
{
	char name[10];
	int age;
	void intrduce(){//结构体中写函数
		cout << name << age << endl;
	}
};
int main(){
	struct Student stu = { "吴彦祖", 18 };//c语言写法
	cout << stu.name << "" << stu.age << "\n";
	stu.intrduce();//调用结构体中书写的函数
	Student stu1 = { "陈冠希", 17 };//C++写法
	cout << stu1.name << "" << stu1.age << endl;
	stu1.intrduce();
	return 0;
}
#endif
#if 0
int main(){
	union {//匿名联合 使变量按联合方式在内存分布
		char c;//类型不同,共用一块内存
		int i;
	};
	i = 65;
	cout << i << endl;
	cout << c<< endl;
	return 0;
}
#endif
#if 1
enum Color{
	red,//0
	green,//1
	blue//2
};
/*
enum ColorEx{
	red,
	green,
	blude

};
*/
namespace abc{
	enum ColorEx{
		red,
		green,
		blude
	};
}
int main(){
	//Color c=2;//类型检查更严格,不能int 转换为Color
	Color c = red;
	c = green;
	c = (Color)1;
}
#endif

 


小主人,要加油哦···················

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

码字界陈冠希

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值