int [3]赋值给unsigned int [100]的类型不兼容

时间:2015-05-28 01:20:22

标签: c++ compilation compiler-errors

在我的头文件(IntegerSet.h)中,类的定义如下:

class IntegerSet{
public:
unsigned int set[100];
};

在我的实现文件(IntegerSet.cpp)中,我创建了一个unsigned int,并且具有以下代码:

unsigned int newUnion[4];
IntegerSet c;
c.set=newUnion;

问题在于,每当我尝试编译实现文件时,它都会返回以下错误:incompatible types in assignment of unsigned int [4] to unsigned int [100]

0 个答案:

没有答案