为什么我的委托在作为方法的参数传入时不起作用

本文关键字:参数 不起作用 方法 我的 为什么 | 更新日期: 2023-09-27 17:58:53

我创建了一个委托,并希望将该委托用作方法参数列表中的参数。我想像在Main方法中那样调用处理程序,它可以完美地工作。

问题:如何将委托传递给方法

代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
    class Program
    {
        public delegate void Del(string e);
        Del handler = DelegateMethod;
        public static void DelegateMethod(string message)
        {
            System.Console.WriteLine(message);
            System.Console.ReadKey();
        }
        public void testDel(Del d)     <--Write Here!!!
        {
            d.handler("33");
        }

        static void Main(string[] args)
        {
            // Instantiate the delegate.
            // Del handler = DelegateMethod;
            Program p = new Program();
            p.handler("Hello World");    <--Like this example here (these work)
            p.handler("DisneyLand");
            p.handler("Cattle Wars");
            testDel(p.handler("Cattle Wars");
        }
    }
}

错误列表:

Error   1   The best overloaded method match for 'ConsoleApplication1.Program.testDel(ConsoleApplication1.Program.Del)' has some invalid arguments  C:'Users'itpr13266'AppData'Local'Temporary Projects'ConsoleApplication1'Program.cs  36  12  ConsoleApplication1
Error   2   Argument 1: cannot convert from 'void' to 'ConsoleApplication1.Program.Del' C:'Users'itpr13266'AppData'Local'Temporary Projects'ConsoleApplication1'Program.cs  36  20  ConsoleApplication1
Error   3   ) expected  C:'Users'itpr13266'AppData'Local'Temporary Projects'ConsoleApplication1'Program.cs  36  44  ConsoleApplication1

工作代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
    class Program
    {
        public delegate void Del(string e);
        Del handler = DelegateMethod;
        public static void DelegateMethod(string message)
        {
            System.Console.WriteLine(message);
            System.Console.ReadKey();
        }
        public void testDel(Del d)
        {
            d.Invoke("L");
        }
        static void Main(string[] args)
        {
            // Instantiate the delegate.
            // Del handler = DelegateMethod;
            Program p = new Program();
            p.handler("Hello World");
            p.handler("DisneyLand");
            p.handler("Cattle Wars");
            p.testDel(p.handler);
        }
    }
}

为什么我的委托在作为方法的参数传入时不起作用

在行

testDel(p.handler("Cattle Wars"));

调用CCD_ 1。不再存在要传递到CCD_ 3中的CCD_。也许你在寻找:

testDel(p.handler);

这会传递Del,以便testDel可以调用它。

您必须将委托传递到没有"牛战"参数的方法中

   testDel(p.handler);

然后您的方法应该如下所示。

    public void testDel(Del d)
    {
        d.Invoke("L");
    }

我不得不说,代理对我来说仍然很奇怪。我知道它们只是类型安全和线程安全的变量。您可以像调用方法名称一样使用变量。

    public delegate void Del(string e);
    Del handler = DelegateMethod;

在您的示例中,您的委托可以设置为任何返回类型为void并接受一个字符串参数的方法。

   Del handler = DelegateMethod;

上面是您声明委托的地方,但您也可以将委托声明给除void和一个参数外的任何方法作为字符串。

    handler = BaseBall;

     public void BaseBall(string a) 
     {
         //code here
     }

我会一直读下去,你会边读边学的。