次の方法で共有


コンパイラ エラー C3104

無効な属性引数です

属性に無効な引数を指定しました。

詳細については、「属性パラメーターの型」を参照してください。

このエラーは、Visual Studio 2005 で行われたコンパイラ準拠作業の結果として生成される可能性があります。マネージド配列をカスタム属性に渡すときに、配列のタイプが集約の初期化リストから推測されなくなりました。 コンパイラでは、配列の型と初期化子リストを指定する必要があります。

次の例では C3104 が生成されます。

// C3104a.cpp
// compile with: /clr /c
using namespace System;

[AttributeUsage(AttributeTargets::Class)]
public ref struct ABC : public Attribute {
   ABC(array<int>^){}
   array<double> ^ param;
};

[ABC( {1,2,3}, param = {2.71, 3.14})]   // C3104
// try the following line instead
// [ABC( gcnew array<int> {1,2,3}, param = gcnew array<double>{2.71, 3.14})]
ref struct AStruct{};

次の例では C3104 が生成されます。

// C3104b.cpp
// compile with: /clr /c
// C3104 expected
using namespace System;

int func() {
   return 0;
}

[attribute(All)]
ref class A {
public:
   A(int) {}
};

// Delete the following 2 lines to resolve.
[A(func())]
ref class B {};

// OK
[A(0)]
ref class B {};