说明:
如果我们要表示一个向量的话 需要定义三个float类型 X Y Z
这样比较麻烦,不方便管理,我们可以使用结构体
定义结构体
struct <typeName>{
<memberDeclarations>
}
其中<memberDeclarations>是结构体的成员,每个成员声明如下
<type> <name>;
struct Vector3{
int x;
int y;
int z;
}
如果我们要表示一个向量的话 需要定义三个float类型 X Y Z
这样比较麻烦,不方便管理,我们可以使用结构体
定义结构体
struct <typeName>{
<memberDeclarations>
}
其中<memberDeclarations>是结构体的成员,每个成员声明如下
<type> <name>;
struct Vector3{
int x;
int y;
int z;
}