9

概念的には、次のことを実行したいのですが、C#で正しくコーディングする方法を理解するのに苦労しました。


SomeMethod { // Member of AClass{}
    DoSomething;
    Start WorkerMethod() from BClass in another thread;
    DoSomethingElse;
}

次に、WorkerMethod()が完了したら、次のコマンドを実行します。


void SomeOtherMethod()  // Also member of AClass{}
{ ... }

誰かがその例を挙げてもらえますか?

4

7 に答える 7

13

BackgroundWorkerクラスは、まさにこの目的のために .NET 2.0 に追加されました。

簡単に言えば、次のことを行います。

BackgroundWorker worker = new BackgroundWorker();
worker.DoWork += delegate { myBClass.DoHardWork(); }
worker.RunWorkerCompleted += new RunWorkerCompletedEventHandler(SomeOtherMethod);
worker.RunWorkerAsync();

必要に応じて、キャンセルや進捗レポートなどの凝ったものを追加することもできます:)

于 2008-09-16T17:41:52.870 に答える
5

.Net 2では、BackgroundWorkerが導入されました。これにより、非同期操作の実行が非常に簡単になります。

BackgroundWorker bw = new BackgroundWorker { WorkerReportsProgress = true };

bw.DoWork += (sender, e) => 
   {
       //what happens here must not touch the form
       //as it's in a different thread
   };

bw.ProgressChanged += ( sender, e ) =>
   {
       //update progress bars here
   };

bw.RunWorkerCompleted += (sender, e) => 
   {
       //now you're back in the UI thread you can update the form
       //remember to dispose of bw now
   };

worker.RunWorkerAsync();

.Net 1では、スレッドを使用する必要があります。

于 2008-09-16T19:01:24.833 に答える
2

ここにはいくつかの可能性がありますが、メソッドを使用して非同期的に呼び出されるデリゲートを使用しBeginInvokeます。

警告:この記事で説明されているように、最終的なメモリリークを回避するためEndInvokeに、常にを呼び出すことを忘れないでください。IAsyncResult

于 2008-09-16T21:08:07.117 に答える
2

AsyncCallBacks を使用する必要があります。AsyncCallBacks を使用してメソッドへのデリゲートを指定し、ターゲット メソッドの実行が完了すると呼び出される CallBack メソッドを指定できます。

ここに小さな例があります。実行して自分で確認してください。

クラス プログラム {

    public delegate void AsyncMethodCaller();


    public static void WorkerMethod()
    {
        Console.WriteLine("I am the first method that is called.");
        Thread.Sleep(5000);
        Console.WriteLine("Exiting from WorkerMethod.");
    }

    public static void SomeOtherMethod(IAsyncResult result)
    {
        Console.WriteLine("I am called after the Worker Method completes.");
    }



    static void Main(string[] args)
    {
        AsyncMethodCaller asyncCaller = new AsyncMethodCaller(WorkerMethod);
        AsyncCallback callBack = new AsyncCallback(SomeOtherMethod);
        IAsyncResult result = asyncCaller.BeginInvoke(callBack, null);
        Console.WriteLine("Worker method has been called.");
        Console.WriteLine("Waiting for all invocations to complete.");
        Console.Read();

    }
}
于 2008-09-16T18:34:45.973 に答える
1

BackgroundWorker をチェックしてください。

于 2008-09-16T17:39:33.033 に答える
1

非同期デリゲートを使用します。

// Method that does the real work
public int SomeMethod(int someInput)
{
Thread.Sleep(20);
Console.WriteLine(”Processed input : {0}”,someInput);
return someInput+1;
} 


// Method that will be called after work is complete
public void EndSomeOtherMethod(IAsyncResult result)
{
SomeMethodDelegate myDelegate = result.AsyncState as SomeMethodDelegate;
// obtain the result
int resultVal = myDelegate.EndInvoke(result);
Console.WriteLine(”Returned output : {0}”,resultVal);
}

// Define a delegate
delegate int SomeMethodDelegate(int someInput);
SomeMethodDelegate someMethodDelegate = SomeMethod;

// Call the method that does the real work
// Give the method name that must be called once the work is completed.
someMethodDelegate.BeginInvoke(10, // Input parameter to SomeMethod()
EndSomeOtherMethod, // Callback Method
someMethodDelegate); // AsyncState
于 2008-09-16T18:03:29.823 に答える
0

わかりました、あなたがこれについてどうしたいのかわかりません。あなたの例から、 WorkerMethod は実行する独自のスレッドを作成していないように見えますが、別のスレッドでそのメソッドを呼び出したいと考えています。

その場合は、WorkerMethod を呼び出してから SomeOtherMethod を呼び出す短いワーカー メソッドを作成し、そのメソッドを別のスレッドでキューに入れます。次に、WorkerMethod が完了すると、SomeOtherMethod が呼び出されます。例えば:

public class AClass
{
    public void SomeMethod()
    {
        DoSomething();

        ThreadPool.QueueUserWorkItem(delegate(object state)
        {
            BClass.WorkerMethod();
            SomeOtherMethod();
        });

        DoSomethingElse();
    }

    private void SomeOtherMethod()
    {
        // handle the fact that WorkerMethod has completed. 
        // Note that this is called on the Worker Thread, not
        // the main thread.
    }
}
于 2008-09-16T17:52:48.977 に答える