C++中struct类型增强

struct类型的加强:

C语言的struct定义了一组变量的集合,C编译器并不认为这是一种新的类型。

C++中的struct是一个新类型的定义声明。


demo

struct Student
{
	char name[100];
	int age;
};

int main(int argc, char *argv[])
{
	// C语言中需要在定义结构体的时候加struct,而C++不需要
	Student s1 = { "wang", 1 };
	Student s2 = { "wang2", 2 };
	return 0;
}


原文地址:https://www.cnblogs.com/zhangyaoqi/p/4591646.html