gpt4 book ai didi

c# - 如何从类库中调用项目的任何方法?

转载 作者:行者123 更新时间:2023-11-30 12:53:23 24 4
gpt4 key购买 nike

我有一个类库,其中有一个基于生产者和消费者的多线程类。

private void WorkDeQueue()
{
while (true)
{
string Url = null;
lock (locker)
{
if (queueList.Count > 0)
{
Url = queueList.Dequeue();
/* return if a null is found in the queue */
if (Url == null) return;
}
}
if (Url != null)
{
/* if a job was found then process it */
GetData(Url); //This Is a Method
}
else
{
/* if a job was not found (meaning list is empty) then
* wait till something is added to it*/
wh.WaitOne();
}
}
}

此 GetData 方法在该类上没有主体。如何调用项目的任何方法来代替 GetData。

我尝试了工厂模式和反射,但两者都不适合我。所以请告诉我如何从这里调用我的项目的任何方法。

最佳答案

没有太多信息可以继续,但我可能会将 GetData 放入委托(delegate)中,这样您就可以在创建类实例时将其替换为所需的任何内容。就像是:' 公开课Class1 { 公共(public)委托(delegate) void GetDataDelegate(string url); 私有(private)事件 GetDataDelegate GetData;

    public Class1(GetDataDelegate getData)
{
GetData += getData;
}

//blah blah blah
}

'

关于c# - 如何从类库中调用项目的任何方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2480782/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com