c -cli – 使用Predicate with Array :: FindAll()编译C/C++LI委托调用时出错

前端之家收集整理的这篇文章主要介绍了c -cli – 使用Predicate with Array :: FindAll()编译C/C++LI委托调用时出错前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
以下代码导致C3867(…函数调用缺少参数列表…)和C3350(…委托构造函数需要2个参数…).我究竟做错了什么?
public ref class Form1 : public System::Windows::Forms::Form
    {
    public:
        bool IsEven(int i){
            return (i % 2) == 0;
        }

        Form1(void)
        {
            numbers = gcnew array<int>{
                1,2,3,4,5,6,7,8,9,10
            };

            array<int> ^even = Array::FindAll(
                numbers,gcnew Predicate<int>(IsEven));
        }
    };

解决方法

在C/C++LI中,您必须传递包含该函数的类型的实际实例:
array<int> ^even = Array::FindAll(
    numbers,gcnew Predicate<int>(this,&Test::IsEven));

(或使您的IsEven方法静态)

原文链接:https://www.f2er.com/c/111905.html

猜你在找的C&C++相关文章