如何在另一个类中初始化结构? 第一类中有结构: first_class.h:
typedef struct
{
int x;
int y;
int z;
}*v,*vekt;
我希望在另一个班级中拥有它: 我试着在another_class.cpp
first_class:: v vector;
它不起作用 哪里有问题?
\\========================================
我想做的是: 我有两个clases,一个放在这个strukture,另一个是methot,允许输入矢量数据结构。我必须制作两个向量的数组,但是当我使用不带ponter的数组时,只需简单的struct数组,它就不会改变结构变量。
答案 0 :(得分:0)
struct v
{
int x;
int y;
int z;
};
first_class::v vector;
我认为与C风格的struct typedef存在一些混淆。