如何声明handel数组?

时间:2012-03-30 18:12:53

标签: c++ .net arrays collections c++-cli

我想声明一个handel数组,如下代码所示:

using namespace System::Drawing;
ref class B 
{
    Bitmap^ b[];

    B()
    {
        b = new Bitmap^[10];
    }
};

但是在编译

时它会引发错误
error C2728: 'System::Drawing::Bitmap ^' : a native array cannot contain this managed type
error C4368: cannot define 'b' as a member of managed 'B': mixed types are not supported
error C2728: 'System::Drawing::Bitmap ^' : a native array cannot contain this managed type
error C2440: '=' : cannot convert from 'System::Drawing::Bitmap ^*' to 'System::Drawing::Bitmap ^[]'

有人可以告诉我正确的方式来声明一个handel数组吗?

非常感谢!

T&安培; T组

2 个答案:

答案 0 :(得分:5)

你需要使用gcnew ,因为这是一个.Net数组,而不是C ++数组,因为这是一个托管类型的数组,而不是本机类型的数组。我没有编译器方便测试此代码,但我相信这将是这样做的方法。

using namespace System::Drawing;
ref class B 
{
private:
    array<Bitmap^>^ b;

public:
    B()
    {
        b = gcnew array<Bitmap^>(10);
    }
};

答案 1 :(得分:1)

我可能会使用泛型集合类型而不是数组。

不确定是什么汉德尔。