TaskFactory.StartNew メソッド
定義
オーバーロード
注釈
@No__t-0 以降では、計算主体のタスクを起動する方法として、Task.Run の方法をお勧めします。Starting with the .NET Framework 4.5.NET Framework 4.5, the Task.Run method is the recommended way to launch a compute-bound task. @No__t-0 メソッドを使用するのは、長時間実行される計算主体のタスクに対してきめ細かい制御が必要な場合のみにしてください。Use the StartNew method only when you require fine-grained control for a long-running, compute-bound task. これには、次のことを制御するシナリオが含まれます。This includes scenarios in which you want to control the following:
タスクの作成オプション。Task creation options. 既定で Task.Run メソッドによって作成されたタスクは、TaskCreationOptions.DenyChildAttach オプションを使用して作成されます。Tasks created by the Task.Run method by default are created with the TaskCreationOptions.DenyChildAttach option. この動作をオーバーライドする場合、またはその他の TaskCreationOptions オプションを指定する場合は、StartNew のオーバーロードを呼び出します。To override this behavior, or to provide other TaskCreationOptions options, call a StartNew overload.
パラメーターを渡します。Parameter passing. @No__t-0 メソッドのオーバーロードでは、タスクデリゲートにパラメーターを渡すことはできません。The overloads of the Task.Run method do not allow you to pass a parameter to the task delegate. @No__t-0 メソッドのオーバーロードは、を実行します。Overloads of the StartNew method do.
タスク スケジューラ。The task scheduler. @No__t-0 メソッドのオーバーロードでは、既定のタスクスケジューラが使用されます。The overloads of the Task.Run method use the default task scheduler. タスクスケジューラを制御するには、
scheduler
パラメーターを使用して @no__t 0 のオーバーロードを呼び出します。To control the task scheduler, call a StartNew overload with ascheduler
parameter. 詳細については、「TaskScheduler」を参照してください。For more information, see TaskScheduler.
StartNew(Action<Object>, Object, CancellationToken, TaskCreationOptions, TaskScheduler)
Task を作成して開始します。Creates and starts a Task.
public:
System::Threading::Tasks::Task ^ StartNew(Action<System::Object ^> ^ action, System::Object ^ state, System::Threading::CancellationToken cancellationToken, System::Threading::Tasks::TaskCreationOptions creationOptions, System::Threading::Tasks::TaskScheduler ^ scheduler);
public System.Threading.Tasks.Task StartNew (Action<object> action, object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskScheduler scheduler);
member this.StartNew : Action<obj> * obj * System.Threading.CancellationToken * System.Threading.Tasks.TaskCreationOptions * System.Threading.Tasks.TaskScheduler -> System.Threading.Tasks.Task
パラメーター
- state
- Object
action
デリゲートによって使用されるデータを格納しているオブジェクト。An object containing data to be used by the action
delegate.
- cancellationToken
- CancellationToken
新しいタスクに割り当てられる CancellationToken。The CancellationToken that will be assigned to the new task.
- creationOptions
- TaskCreationOptions
作成された Task の動作を制御する TaskCreationOptions 値。A TaskCreationOptions value that controls the behavior of the created Task
- scheduler
- TaskScheduler
作成された TaskScheduler をスケジュールするときに使用する Task。The TaskScheduler that is used to schedule the created Task.
戻り値
例外
指定された CancellationToken は既に破棄されています。The provided CancellationToken has already been disposed.
action
は null
です。action
is null
.
- または --or-
scheduler
は null
です。scheduler
is null
.
creationOptions
引数に無効な TaskCreationOptions 値が指定されています。creationOptions
argument specifies an invalid TaskCreationOptions value. 詳細については、FromAsync(Func<AsyncCallback,Object,IAsyncResult>, Action<IAsyncResult>, Object, TaskCreationOptions) の「解説」を参照してください。For more information, see the Remarks for FromAsync(Func<AsyncCallback,Object,IAsyncResult>, Action<IAsyncResult>, Object, TaskCreationOptions)
注釈
StartNew の呼び出しは、そのコンストラクターの1つを使用してタスクを作成し、Start を呼び出すことで、実行のスケジュールを設定することと機能的に同じです。Calling StartNew is functionally equivalent to creating a Task using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew を簡単に呼び出すことができるように、Run メソッドを @no__t 2 オブジェクトと共に使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Run method with an Action object as a quick way to call StartNew with default parameters. 詳細とコード例については、.NET の並列プログラミングに関するブログの「タスク」を参照してください。For more information and code examples, see Task.Run vs Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew(Action, CancellationToken, TaskCreationOptions, TaskScheduler)
Task を作成して開始します。Creates and starts a Task.
public:
System::Threading::Tasks::Task ^ StartNew(Action ^ action, System::Threading::CancellationToken cancellationToken, System::Threading::Tasks::TaskCreationOptions creationOptions, System::Threading::Tasks::TaskScheduler ^ scheduler);
public System.Threading.Tasks.Task StartNew (Action action, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskScheduler scheduler);
member this.StartNew : Action * System.Threading.CancellationToken * System.Threading.Tasks.TaskCreationOptions * System.Threading.Tasks.TaskScheduler -> System.Threading.Tasks.Task
パラメーター
- action
- Action
非同期で実行するアクション デリゲート。The action delegate to execute asynchronously.
- cancellationToken
- CancellationToken
新しい CancellationToken に割り当てられる Task。The CancellationToken that will be assigned to the new Task
- creationOptions
- TaskCreationOptions
作成された Task の動作を制御する TaskCreationOptions 値。A TaskCreationOptions value that controls the behavior of the created Task
- scheduler
- TaskScheduler
作成された TaskScheduler をスケジュールするときに使用する Task。The TaskScheduler that is used to schedule the created Task.
戻り値
例外
指定された CancellationToken は既に破棄されています。The provided CancellationToken has already been disposed.
action
は null
です。action
is null
.
- または --or-
scheduler
が null
です。scheduler
is null
.
creationOptions
に無効な TaskCreationOptions 値が指定されています。creationOptions
specifies an invalid TaskCreationOptions value. 詳細については、FromAsync(Func<AsyncCallback,Object,IAsyncResult>, Action<IAsyncResult>, Object, TaskCreationOptions) の「解説」を参照してください。For more information, see the Remarks for FromAsync(Func<AsyncCallback,Object,IAsyncResult>, Action<IAsyncResult>, Object, TaskCreationOptions)
注釈
StartNew の呼び出しは、そのコンストラクターの1つを使用してタスクを作成し、Start を呼び出すことで、実行のスケジュールを設定することと機能的に同じです。Calling StartNew is functionally equivalent to creating a Task using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew を簡単に呼び出すことができるように、Run メソッドを @no__t 2 オブジェクトと共に使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Run method with an Action object as a quick way to call StartNew with default parameters. 詳細とコード例については、.NET の並列プログラミングに関するブログの「タスク」を参照してください。For more information and code examples, see Task.Run vs Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew(Action<Object>, Object, TaskCreationOptions)
Task を作成して開始します。Creates and starts a Task.
public:
System::Threading::Tasks::Task ^ StartNew(Action<System::Object ^> ^ action, System::Object ^ state, System::Threading::Tasks::TaskCreationOptions creationOptions);
public System.Threading.Tasks.Task StartNew (Action<object> action, object state, System.Threading.Tasks.TaskCreationOptions creationOptions);
member this.StartNew : Action<obj> * obj * System.Threading.Tasks.TaskCreationOptions -> System.Threading.Tasks.Task
Public Function StartNew (action As Action(Of Object), state As Object, creationOptions As TaskCreationOptions) As Task
パラメーター
- state
- Object
action
デリゲートによって使用されるデータを格納しているオブジェクト。An object containing data to be used by the action
delegate.
- creationOptions
- TaskCreationOptions
作成された Task の動作を制御する TaskCreationOptions 値。A TaskCreationOptions value that controls the behavior of the created Task
戻り値
例外
action
は null
です。action
is null
.
creationOptions
に無効な TaskCreationOptions 値が指定されています。creationOptions
specifies an invalid TaskCreationOptions value.
注釈
StartNew の呼び出しは、そのコンストラクターの1つを使用してタスクを作成し、Start を呼び出すことで、実行のスケジュールを設定することと機能的に同じです。Calling StartNew is functionally equivalent to creating a Task using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew を簡単に呼び出すことができるように、Run メソッドを @no__t 2 オブジェクトと共に使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Run method with an Action object as a quick way to call StartNew with default parameters. 詳細とコード例については、.NET の並列プログラミングに関するブログの「タスク」を参照してください。For more information and code examples, see Task.Run vs Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew(Action<Object>, Object, CancellationToken)
Task を作成して開始します。Creates and starts a Task.
public:
System::Threading::Tasks::Task ^ StartNew(Action<System::Object ^> ^ action, System::Object ^ state, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task StartNew (Action<object> action, object state, System.Threading.CancellationToken cancellationToken);
member this.StartNew : Action<obj> * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task
パラメーター
- state
- Object
action
デリゲートによって使用されるデータを格納しているオブジェクト。An object containing data to be used by the action
delegate.
- cancellationToken
- CancellationToken
新しい CancellationToken に割り当てられる Task。The CancellationToken that will be assigned to the new Task
戻り値
例外
指定された CancellationToken は既に破棄されています。The provided CancellationToken has already been disposed.
action
は null
です。action
is null
.
例
次の例では、6文字の単語の配列を定義しています。The following example defines an array of 6-letter words. 各単語は @no__t 0 デリゲートに渡されます。このデリゲートは、単語をスクランブルし、元の単語とそのスクランブルされたバージョンを表示します。Each word is then passed to an Action<T> delegate, which scrambles the word and displays the original word and its scrambled version.
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
public class Example
{
public static void Main()
{
CancellationTokenSource cts = new CancellationTokenSource();
CancellationToken token = cts.Token;
var tasks = new List<Task>();
Random rnd = new Random();
Object lockObj = new Object();
String[] words6 = { "reason", "editor", "rioter", "rental",
"senior", "regain", "ordain", "rained" };
foreach (var word6 in words6)
tasks.Add(Task.Factory.StartNew( (word) => { Char[] chars = word.ToString().ToCharArray();
double[] order = new double[chars.Length];
token.ThrowIfCancellationRequested();
bool wasZero = false;
lock (lockObj) {
for (int ctr = 0; ctr < order.Length; ctr++) {
order[ctr] = rnd.NextDouble();
if (order[ctr] == 0) {
if (! wasZero) {
wasZero = true;
}
else {
cts.Cancel();
}
}
}
}
token.ThrowIfCancellationRequested();
Array.Sort(order, chars);
Console.WriteLine("{0} --> {1}", word,
new String(chars));
}, word6, token));
try {
Task.WaitAll(tasks.ToArray());
}
catch (AggregateException e) {
foreach (var ie in e.InnerExceptions) {
if (ie is OperationCanceledException) {
Console.WriteLine("The word scrambling operation has been cancelled.");
break;
}
else {
Console.WriteLine(ie.GetType().Name + ": " + ie.Message);
}
}
}
finally {
cts.Dispose();
}
}
}
// The example displays output like the following:
// regain --> irnaeg
// ordain --> rioadn
// reason --> soearn
// rained --> rinade
// rioter --> itrore
// senior --> norise
// rental --> atnerl
// editor --> oteird
Imports System.Collections.Generic
Imports System.Threading
Imports System.Threading.Tasks
Module Example
Public Sub Main()
Dim cts As New CancellationTokenSource()
Dim token As CancellationToken = cts.Token
Dim tasks As New List(Of Task)()
Dim rnd As New Random()
Dim lockObj As New Object()
Dim words6() As String = { "reason", "editor", "rioter", "rental",
"senior", "regain", "ordain", "rained" }
For Each word6 in words6
tasks.Add(Task.Factory.StartNew( Sub(word)
Dim chars() As Char = word.ToString().ToCharArray()
Dim order(chars.Length - 1) As Double
Dim wasZero As Boolean = False
SyncLock lockObj
For ctr As Integer = 0 To order.Length - 1
order(ctr) = rnd.NextDouble()
If order(ctr) = 0 Then
If Not wasZero Then
wasZero = True
Else
cts.Cancel()
End If
End If
Next
End SyncLock
token.ThrowIfCancellationRequested()
Array.Sort(order, chars)
Console.WriteLine("{0} --> {1}", word,
new String(chars))
End Sub, word6))
Next
Try
Task.WaitAll(tasks.ToArray())
Catch e As AggregateException
For Each ie In e.InnerExceptions
If TypeOf ie Is OperationCanceledException
Console.WriteLine("The word scrambling operation has been cancelled.")
Exit For
Else
Console.WriteLine(ie.GetType().Name + ": " + ie.Message)
End If
Next
Finally
cts.Dispose()
End Try
End Sub
End Module
' The example displays output like the following:
' regain --> irnaeg
' ordain --> rioadn
' reason --> soearn
' rained --> rinade
' rioter --> itrore
' senior --> norise
' rental --> atnerl
' editor --> oteird
この例では、1つの乱数ジェネレーターを初期化しています。これは、ロックによって保護されています。Note that the example initializes a single random number generator, which is protected by a lock. ロックが必要な場合は、Random クラスのトピックの「Random クラスとスレッドセーフ」を参照してください。For the need of a lock, see "The System.Random class and thread safety" in the Random class topic. 乱数ジェネレーターが破損している可能性を処理するために、キャンセルトークンがタスクに渡されます。To handle the possibility of corruption of the random number generator, a cancellation token is passed to task. 2つの乱数が0の場合、メソッドは、乱数ジェネレーターが破損していると見なし、キャンセルトークンを設定します。If two random numbers equal zero, the method assumes that the random number generator is corrupted and sets the cancellation token. 単語内の6文字を含む @no__t 0 配列を並べ替える前に、メソッドは CancellationToken.ThrowIfCancellationRequested メソッドを呼び出して、トークンが取り消された場合に @no__t をスローします。Before sorting the chars
array that contains the six characters in a word, the method calls the CancellationToken.ThrowIfCancellationRequested method to throw an OperationCanceledException if the token has been canceled.
注釈
StartNew の呼び出しは、そのコンストラクターの1つを使用してタスクを作成し、Start を呼び出すことで、実行のスケジュールを設定することと機能的に同じです。Calling StartNew is functionally equivalent to creating a Task using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew を簡単に呼び出すことができるように、Run メソッドを @no__t 2 オブジェクトと共に使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Run method with an Action object as a quick way to call StartNew with default parameters. 詳細とコード例については、.NET の並列プログラミングに関するブログの「タスク」を参照してください。For more information and code examples, see Task.Run vs Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew(Action, CancellationToken)
Task を作成して開始します。Creates and starts a Task.
public:
System::Threading::Tasks::Task ^ StartNew(Action ^ action, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task StartNew (Action action, System.Threading.CancellationToken cancellationToken);
member this.StartNew : Action * System.Threading.CancellationToken -> System.Threading.Tasks.Task
パラメーター
- action
- Action
非同期で実行するアクション デリゲート。The action delegate to execute asynchronously.
- cancellationToken
- CancellationToken
新しいタスクに割り当てられる CancellationToken。The CancellationToken that will be assigned to the new task.
戻り値
例外
指定された CancellationToken は既に破棄されています。The provided CancellationToken has already been disposed.
action
が null
です。action
is null
.
例
次の例では、StartNew(Action, CancellationToken) メソッドを呼び出して、C:\Windows\System32 ディレクトリ内のファイルを反復処理するタスクを作成します。The following example calls the StartNew(Action, CancellationToken) method to create a task that iterates the files in the C:\Windows\System32 directory. ラムダ式は Parallel.ForEach メソッドを呼び出して、各ファイルに関する情報を @no__t 1 つのオブジェクトに追加します。The lambda expression calls the Parallel.ForEach method to add information about each file to a List<T> object. @No__t-0 ループによって呼び出された、デタッチされた入れ子になった各タスクは、キャンセルトークンの状態をチェックし、キャンセルが要求された場合は CancellationToken.ThrowIfCancellationRequested メソッドを呼び出します。Each detached nested task invoked by the Parallel.ForEach loop checks the state of the cancellation token and, if cancellation is requested, calls the CancellationToken.ThrowIfCancellationRequested method. @No__t-0 メソッドは、呼び出し元のスレッドが Task.Wait メソッドを呼び出すと catch
ブロックで処理される OperationCanceledException 例外をスローします。The CancellationToken.ThrowIfCancellationRequested method throws an OperationCanceledException exception that is handled in a catch
block when the calling thread calls the Task.Wait method.
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
public class Example
{
public static void Main()
{
var tokenSource = new CancellationTokenSource();
var token = tokenSource.Token;
var files = new List<Tuple<string, string, long, DateTime>>();
var t = Task.Factory.StartNew( () => { string dir = "C:\\Windows\\System32\\";
object obj = new Object();
if (Directory.Exists(dir)) {
Parallel.ForEach(Directory.GetFiles(dir),
f => {
if (token.IsCancellationRequested)
token.ThrowIfCancellationRequested();
var fi = new FileInfo(f);
lock(obj) {
files.Add(Tuple.Create(fi.Name, fi.DirectoryName, fi.Length, fi.LastWriteTimeUtc));
}
});
}
}
, token);
tokenSource.Cancel();
try {
t.Wait();
Console.WriteLine("Retrieved information for {0} files.", files.Count);
}
catch (AggregateException e) {
Console.WriteLine("Exception messages:");
foreach (var ie in e.InnerExceptions)
Console.WriteLine(" {0}: {1}", ie.GetType().Name, ie.Message);
Console.WriteLine("\nTask status: {0}", t.Status);
}
finally {
tokenSource.Dispose();
}
}
}
// The example displays the following output:
// Exception messages:
// TaskCanceledException: A task was canceled.
//
// Task status: Canceled
Imports System.Collections.Generic
Imports System.IO
Imports System.Threading
Imports System.Threading.Tasks
Module Example
Public Sub Main()
Dim tokenSource As New CancellationTokenSource()
Dim token As CancellationToken = tokenSource.Token
Dim files As New List(Of Tuple(Of String, String, Long, Date))()
Dim t As Task = Task.Factory.StartNew( Sub()
Dim dir As String = "C:\Windows\System32\"
Dim obj As New Object()
If Directory.Exists(dir)Then
Parallel.ForEach(Directory.GetFiles(dir),
Sub(f)
If token.IsCancellationRequested Then
token.ThrowIfCancellationRequested()
End If
Dim fi As New FileInfo(f)
SyncLock(obj)
files.Add(Tuple.Create(fi.Name, fi.DirectoryName, fi.Length, fi.LastWriteTimeUtc))
End SyncLock
End Sub)
End If
End Sub, token)
tokenSource.Cancel()
Try
t.Wait()
Console.WriteLine("Retrieved information for {0} files.", files.Count)
Catch e As AggregateException
Console.WriteLine("Exception messages:")
For Each ie As Exception In e.InnerExceptions
Console.WriteLine(" {0}:{1}", ie.GetType().Name, ie.Message)
Next
Console.WriteLine()
Console.WriteLine("Task status: {0}", t.Status)
Finally
tokenSource.Dispose()
End Try
End Sub
End Module
' The example displays the following output:
' Exception messages:
' TaskCanceledException: A task was canceled.
'
' Task status: Canceled
注釈
@No__t-0 の呼び出しは、そのコンストラクターの1つを使用してタスクを作成し、Start を呼び出して実行のスケジュールを設定することと機能的に同じです。Calling StartNew
is functionally equivalent to creating a Task using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew(Action, CancellationToken) を呼び出す簡単な方法として、Task.Run(Action, CancellationToken) メソッドを使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Task.Run(Action, CancellationToken) method as a quick way to call StartNew(Action, CancellationToken) with default parameters. ただし、次の2つのメソッドの動作に違いがあることに注意してください。 Task.Run(Action, CancellationToken) 既定では、TaskCreationOptions.AttachedToParent のオプションで開始された子タスクが現在の Task インスタンスにアタッチすることはできません。一方、StartNew(Action, CancellationToken) は使用できません。Note, however, that there is a difference in behavior between the two methods regarding : Task.Run(Action, CancellationToken) by default does not allow child tasks started with the TaskCreationOptions.AttachedToParent option to attach to the current Task instance, whereas StartNew(Action, CancellationToken) does. 詳細とコード例については、.NET の並列プログラミングに関するブログの「タスク」を参照してください。For more information and code examples, see Task.Run vs Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew(Action, TaskCreationOptions)
Task を作成して開始します。Creates and starts a Task.
public:
System::Threading::Tasks::Task ^ StartNew(Action ^ action, System::Threading::Tasks::TaskCreationOptions creationOptions);
public System.Threading.Tasks.Task StartNew (Action action, System.Threading.Tasks.TaskCreationOptions creationOptions);
member this.StartNew : Action * System.Threading.Tasks.TaskCreationOptions -> System.Threading.Tasks.Task
パラメーター
- action
- Action
非同期で実行するアクション デリゲート。The action delegate to execute asynchronously.
- creationOptions
- TaskCreationOptions
作成された Task の動作を制御する TaskCreationOptions 値。A TaskCreationOptions value that controls the behavior of the created Task
戻り値
例外
action
は null
です。action
is null
.
creationOptions
に無効な TaskCreationOptions 値が指定されています。creationOptions
specifies an invalid TaskCreationOptions value.
注釈
StartNew の呼び出しは、そのコンストラクターの1つを使用してタスクを作成し、Start を呼び出すことで、実行のスケジュールを設定することと機能的に同じです。Calling StartNew is functionally equivalent to creating a Task using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew を簡単に呼び出すことができるように、Run メソッドを @no__t 2 オブジェクトと共に使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Run method with an Action object as a quick way to call StartNew with default parameters. 詳細とコード例については、.NET の並列プログラミングに関するブログの「タスク」を参照してください。For more information and code examples, see Task.Run vs Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew(Action)
タスクを作成して開始します。Creates and starts a task.
public:
System::Threading::Tasks::Task ^ StartNew(Action ^ action);
public System.Threading.Tasks.Task StartNew (Action action);
member this.StartNew : Action -> System.Threading.Tasks.Task
パラメーター
- action
- Action
非同期で実行するアクション デリゲート。The action delegate to execute asynchronously.
戻り値
開始されたタスク。The started task.
例外
action
引数が null
です。The action
argument is null
.
例
次の例では、StartNew(Action) メソッドを使用して、乱数を生成し、それを Unicode コードポイントとして解釈して、それを UTF16 エンコードコード単位に変換し、結果の文字に関する情報を表示する Action デリゲートを繰り返し呼び出します。アンダースコア.The following example uses the StartNew(Action) method to repeatedly invoke an Action delegate that generates a random number, interprets it as a Unicode code point, converts it to a UTF16-encoded code unit, and displays information about the resulting character or characters.
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
public class Example
{
public static void Main()
{
Random rnd = new Random();
List<Task> tasks = new List<Task>();
// Execute the task 10 times.
for (int ctr = 1; ctr <= 9; ctr++) {
tasks.Add(Task.Factory.StartNew( () => {
int utf32 = 0;
lock(rnd) {
// Get UTF32 value.
utf32 = rnd.Next(0, 0xE01F0);
}
// Convert it to a UTF16-encoded character.
string utf16 = Char.ConvertFromUtf32(utf32);
// Display information about the character.
Console.WriteLine("0x{0:X8} --> '{1,2}' ({2})",
utf32, utf16, ShowHex(utf16));
}));
}
Task.WaitAll(tasks.ToArray());
}
private static string ShowHex(string value)
{
string hexString = null;
// Handle only non-control characters.
if (! Char.IsControl(value, 0)) {
foreach (var ch in value)
hexString += String.Format("0x{0} ", Convert.ToUInt16(ch));
}
return hexString.Trim();
}
}
// The example displays the following output:
// 0x00097103 --> '' (0x55836 0x56579)
// 0x000A98A1 --> '' (0x55910 0x56481)
// 0x00050002 --> '' (0x55552 0x56322)
// 0x0000FEF1 --> 'ﻱ' (0x65265)
// 0x0008BC0A --> '' (0x55791 0x56330)
// 0x000860EA --> '' (0x55768 0x56554)
// 0x0009AC5A --> '' (0x55851 0x56410)
// 0x00053320 --> '' (0x55564 0x57120)
// 0x000874EF --> '' (0x55773 0x56559)
Imports System.Collections.Generic
Imports System.Threading.Tasks
Public Module Example
Public Sub Main()
Dim rnd As New Random()
Dim tasks As New List(Of Task)
' Execute the task 10 times.
For ctr As Integer = 1 To 9
tasks.Add(Task.Factory.StartNew(Sub()
Dim utf32 As Integer
SyncLock(rnd)
' Get UTF32 value.
utf32 = rnd.Next(0, &hE01F0)
End SyncLock
' Convert it to a UTF16-encoded character.
Dim utf16 As String = Char.ConvertFromUtf32(utf32)
' Display information about the character.
Console.WriteLine("0x{0:X8} --> '{1,2}' ({2})",
utf32, utf16, ShowHex(utf16))
End Sub))
Next
Task.WaitAll(tasks.ToArray())
End Sub
Private Function ShowHex(value As String) As String
Dim hexString As String = Nothing
' Handle only non-control characters.
If Not Char.IsControl(value, 0) Then
For Each ch In value
hexString += String.Format("0x{0} ", Convert.ToUInt16(ch))
Next
End If
Return hexString.Trim()
End Function
End Module
' The example displays output similar to the following:
' 0x00097103 --> '' (0x55836 0x56579)
' 0x000A98A1 --> '' (0x55910 0x56481)
' 0x00050002 --> '' (0x55552 0x56322)
' 0x0000FEF1 --> 'ﻱ' (0x65265)
' 0x0008BC0A --> '' (0x55791 0x56330)
' 0x000860EA --> '' (0x55768 0x56554)
' 0x0009AC5A --> '' (0x55851 0x56410)
' 0x00053320 --> '' (0x55564 0x57120)
' 0x000874EF --> '' (0x55773 0x56559)
注釈
@No__t-0 の呼び出しは、そのコンストラクターの1つを使用してタスクを作成し、Task.Start メソッドを呼び出してタスクの実行をスケジュールすることと機能的に同等です。Calling StartNew is functionally equivalent to creating a task by using one of its constructors, and then calling the Task.Start method to schedule the task for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew(Action) を呼び出す簡単な方法として、Task.Run(Action) メソッドを使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Task.Run(Action) method as a quick way to call StartNew(Action) with default parameters. ただし、次の2つのメソッドの動作に違いがあることに注意してください。 Task.Run(Action) 既定では、TaskCreationOptions.AttachedToParent のオプションで開始された子タスクが現在の Task インスタンスにアタッチすることはできません。一方、StartNew(Action) は使用できません。Note, however, that there is a difference in behavior between the two methods regarding : Task.Run(Action) by default does not allow child tasks started with the TaskCreationOptions.AttachedToParent option to attach to the current Task instance, whereas StartNew(Action) does. 詳細とコード例については、.NET の並列プログラミングに関するブログの「タスク」を参照してください。For more information and code examples, see Task.Run vs Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew(Action<Object>, Object)
Task を作成して開始します。Creates and starts a Task.
public:
System::Threading::Tasks::Task ^ StartNew(Action<System::Object ^> ^ action, System::Object ^ state);
public System.Threading.Tasks.Task StartNew (Action<object> action, object state);
member this.StartNew : Action<obj> * obj -> System.Threading.Tasks.Task
Public Function StartNew (action As Action(Of Object), state As Object) As Task
パラメーター
- state
- Object
action
デリゲートによって使用されるデータを格納しているオブジェクト。An object containing data to be used by the action
delegate.
戻り値
例外
action
引数が null
です。The action
argument is null
.
例
次の例では、6文字の単語の配列を定義しています。The following example defines an array of 6-letter words. 各単語は @no__t 0 デリゲートに渡されます。このデリゲートは、単語をスクランブルし、元の単語とそのスクランブルされたバージョンを表示します。Each word is then passed to an Action<T> delegate, which scrambles the word and displays the original word and its scrambled version.
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
public class Example
{
public static void Main()
{
var tasks = new List<Task>();
Random rnd = new Random();
Object lockObj = new Object();
String[] words6 = { "reason", "editor", "rioter", "rental",
"senior", "regain", "ordain", "rained" };
foreach (var word6 in words6)
tasks.Add(Task.Factory.StartNew( (word) => { Char[] chars = word.ToString().ToCharArray();
double[] order = new double[chars.Length];
lock (lockObj) {
for (int ctr = 0; ctr < order.Length; ctr++)
order[ctr] = rnd.NextDouble();
}
Array.Sort(order, chars);
Console.WriteLine("{0} --> {1}", word,
new String(chars));
}, word6));
Task.WaitAll(tasks.ToArray());
}
}
// The example displays output like the following:
// regain --> irnaeg
// ordain --> rioadn
// reason --> soearn
// rained --> rinade
// rioter --> itrore
// senior --> norise
// rental --> atnerl
// editor --> oteird
Imports System.Collections.Generic
Imports System.Threading.Tasks
Module Example
Public Sub Main()
Dim tasks As New List(Of Task)()
Dim rnd As New Random()
Dim lockObj As New Object()
Dim words6() As String = { "reason", "editor", "rioter", "rental",
"senior", "regain", "ordain", "rained" }
For Each word6 in words6
tasks.Add(Task.Factory.StartNew( Sub(word)
Dim chars() As Char = word.ToString().ToCharArray()
Dim order(chars.Length - 1) As Double
SyncLock lockObj
For ctr As Integer = 0 To order.Length - 1
order(ctr) = rnd.NextDouble()
Next
End SyncLock
Array.Sort(order, chars)
Console.WriteLine("{0} --> {1}", word,
new String(chars))
End Sub, word6))
Next
Task.WaitAll(tasks.ToArray())
End Sub
End Module
' The example displays output like the following:
' regain --> irnaeg
' ordain --> rioadn
' reason --> soearn
' rained --> rinade
' rioter --> itrore
' senior --> norise
' rental --> atnerl
' editor --> oteird
この例では、1つの乱数ジェネレーターを初期化しています。これは、ロックによって保護されています。Note that the example initializes a single random number generator, which is protected by a lock. ロックが必要な場合は、Random クラスのトピックの「Random クラスとスレッドセーフ」を参照してください。For the need of a lock, see "The System.Random class and thread safety" in the Random class topic.
注釈
@No__t-0 の呼び出しは、そのコンストラクターの1つを使用して @no__t を作成し、Start メソッドを呼び出して実行のスケジュールを設定することと機能的に同等です。Calling StartNew is functionally equivalent to creating a Task using one of its constructors and then calling the Start method to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew を簡単に呼び出すことができるように、Run メソッドを @no__t 2 オブジェクトと共に使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Run method with an Action object as a quick way to call StartNew with default parameters. 詳細とコード例については、.NET の並列プログラミングに関するブログの「タスク」を参照してください。For more information and code examples, see Task.Run vs Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew<TResult>(Func<TResult>, CancellationToken, TaskCreationOptions, TaskScheduler)
Task<TResult> を作成して開始します。Creates and starts a Task<TResult>.
public:
generic <typename TResult>
System::Threading::Tasks::Task<TResult> ^ StartNew(Func<TResult> ^ function, System::Threading::CancellationToken cancellationToken, System::Threading::Tasks::TaskCreationOptions creationOptions, System::Threading::Tasks::TaskScheduler ^ scheduler);
public System.Threading.Tasks.Task<TResult> StartNew<TResult> (Func<TResult> function, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskScheduler scheduler);
member this.StartNew : Func<'Result> * System.Threading.CancellationToken * System.Threading.Tasks.TaskCreationOptions * System.Threading.Tasks.TaskScheduler -> System.Threading.Tasks.Task<'Result>
型パラメーター
- TResult
Task<TResult> を通じて取得できる結果の型。The type of the result available through the Task<TResult>.
パラメーター
- function
- Func<TResult>
Task<TResult> を通じて取得される結果を返す関数デリゲート。A function delegate that returns the future result to be available through the Task<TResult>.
- cancellationToken
- CancellationToken
新しいタスクに割り当てられる CancellationToken。The CancellationToken that will be assigned to the new task.
- creationOptions
- TaskCreationOptions
作成された Task<TResult> の動作を制御する TaskCreationOptions 値。A TaskCreationOptions value that controls the behavior of the created Task<TResult>.
- scheduler
- TaskScheduler
作成された TaskScheduler をスケジュールするときに使用する Task<TResult>。The TaskScheduler that is used to schedule the created Task<TResult>.
戻り値
開始された Task<TResult>。The started Task<TResult>.
例外
指定された CancellationToken は既に破棄されています。The provided CancellationToken has already been disposed.
function
が null
です。function
is null
.
- または --or-
scheduler
は null
です。scheduler
is null
.
creationOptions
に無効な TaskCreationOptions 値が指定されています。creationOptions
specifies an invalid TaskCreationOptions value. 詳細については、FromAsync(Func<AsyncCallback,Object,IAsyncResult>, Action<IAsyncResult>, Object, TaskCreationOptions) の「解説」を参照してください。For more information, see the Remarks for FromAsync(Func<AsyncCallback,Object,IAsyncResult>, Action<IAsyncResult>, Object, TaskCreationOptions)
注釈
StartNew の呼び出しは、そのコンストラクターの1つを使用して Task<TResult> を作成し、Start を呼び出して実行のスケジュールを設定することと機能的に同じです。Calling StartNew is functionally equivalent to creating a Task<TResult> using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew を簡単に呼び出すことができるように、Run メソッドを @no__t 2 オブジェクトと共に使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Run method with an Action object as a quick way to call StartNew with default parameters. 詳細とコード例については、@no__t のエントリを参照してください。.NET での並列プログラミングに関するブログの「no__t」をご覧ください。For more information and code examples, see the entry Task.Run vs. Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew<TResult>(Func<TResult>)
Task<TResult> を作成して開始します。Creates and starts a Task<TResult>.
public:
generic <typename TResult>
System::Threading::Tasks::Task<TResult> ^ StartNew(Func<TResult> ^ function);
public System.Threading.Tasks.Task<TResult> StartNew<TResult> (Func<TResult> function);
member this.StartNew : Func<'Result> -> System.Threading.Tasks.Task<'Result>
Public Function StartNew(Of TResult) (function As Func(Of TResult)) As Task(Of TResult)
型パラメーター
- TResult
Task<TResult> を通じて取得できる結果の型。The type of the result available through the Task<TResult>.
パラメーター
- function
- Func<TResult>
Task<TResult> を通じて取得される結果を返す関数デリゲート。A function delegate that returns the future result to be available through the Task<TResult>.
戻り値
開始された Task<TResult>。The started Task<TResult>.
例外
function
引数が null
です。The function
argument is null
.
例
次の例は、2つの乱数を生成し、合計を入力するようユーザーに求める単純な追加アプリです。The following example is a simple addition app that generates two random numbers and prompts the user to enter their sum. 次に、答えが正しいかどうかを示します。ユーザーの応答が有効な数値でない場合は、ユーザーに有効な数値を再入力するように求めるメッセージが表示されます。It then indicates whether the answer is correct or, if the user's response is not a valid number, prompts the user to re-enter a valid number. @No__t-0 は、加算する乱数を返す @no__t 1 オブジェクトを作成するために使用されます。The StartNew is used to create the Task<TResult> objects that return the random numbers to add.
using System;
using System.Threading.Tasks;
public class Example
{
public static void Main()
{
Random rnd = new Random();
Task<int>[] tasks = new Task<int>[2];
Object obj = new Object();
while (true) {
for (int ctr = 0; ctr <= 1; ctr++)
tasks[ctr] = Task.Factory.StartNew(() => { int i = 0;
lock(obj) {
i = rnd.Next(101);
}
return i; });
Task.WaitAll(tasks);
int n1 = tasks[0].Result;
int n2 = tasks[1].Result;
int result = n1 + n2;
bool validInput = false;
while (! validInput) {
ShowMessage(n1, n2);
string userInput = Console.ReadLine();
// Process user input.
if (userInput.Trim().ToUpper() == "X") return;
int answer;
validInput = Int32.TryParse(userInput, out answer);
if (! validInput)
Console.WriteLine("Invalid input. Try again, but enter only numbers. ");
else if (answer == result)
Console.WriteLine("Correct!");
else
Console.WriteLine("Incorrect. The correct answer is {0}.", result);
}
}
}
private static void ShowMessage(int n1, int n2)
{
Console.WriteLine("\nEnter 'x' to exit...");
Console.Write("{0} + {1} = ", n1, n2);
}
}
// The example displays the following output:
// Enter 'x' to exit...
// 15 + 11 = 26
// Correct!
//
// Enter 'x' to exit...
// 75 + 33 = adc
// Invalid input. Try again, but enter only numbers.
//
// Enter 'x' to exit...
// 75 + 33 = 108
// Correct!
//
// Enter 'x' to exit...
// 67 + 55 = 133
// Incorrect. The correct answer is 122.
//
// Enter 'x' to exit...
// 92 + 51 = 133
// Incorrect. The correct answer is 143.
//
// Enter 'x' to exit...
// 81 + 65 = x
Imports System.Threading.Tasks
Module AdditionTester
Public Sub Main()
Dim rnd As New Random()
Dim tasks(1) As Task(Of Integer)
Dim obj As New Object()
Do While True
For ctr As Integer = 0 To 1
tasks(ctr) = Task.Factory.StartNew(Function()
Dim i As Integer
SyncLock(obj)
i = rnd.Next(101)
End SyncLock
Return i
End Function)
Next
Task.WaitAll(tasks)
Dim n1 As Integer = tasks(0).Result
Dim n2 As Integer = tasks(1).Result
Dim result As Integer = n1 + n2
Dim validInput As Boolean = False
Do While Not validInput
ShowMessage(n1, n2)
Dim userInput As String = Console.ReadLine()
' Process user input.
If userInput.Trim().ToUpper = "X" Then Exit Sub
Dim answer As Integer
validInput = Int32.TryParse(userInput, answer)
If Not validInput Then
Console.WriteLine("Invalid input. Try again, but enter only numbers. ")
Else If answer = result Then
Console.WriteLine("Correct!")
Else
Console.WriteLine("Incorrect. The correct answer is {0}.", result)
End If
Loop
Loop
End Sub
Private Sub ShowMessage(n1 As Integer, n2 As Integer)
Console.WriteLine()
Console.WriteLine("Enter 'x' to exit...")
Console.Write("{0} + {1} = ", n1, n2)
End Sub
End Module
' The example displays output like the following:
' Enter 'x' to exit...
' 15 + 11 = 26
' Correct!
'
' Enter 'x' to exit...
' 75 + 33 = adc
' Invalid input. Try again, but enter only numbers.
'
' Enter 'x' to exit...
' 75 + 33 = 108
' Correct!
'
' Enter 'x' to exit...
' 67 + 55 = 133
' Incorrect. The correct answer is 122.
'
' Enter 'x' to exit...
' 92 + 51 = 133
' Incorrect. The correct answer is 143.
'
' Enter 'x' to exit...
' 81 + 65 = x
注釈
@No__t-0 の呼び出しは、そのコンストラクターの1つを使用して Task<TResult> を作成し、Start を呼び出して実行をスケジュールすることと機能的に同等です。Calling StartNew is functionally equivalent to creating a Task<TResult> using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew を呼び出す簡単な方法として、Task.Run<TResult>(Func<TResult>) メソッドを呼び出すことができます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can call the Task.Run<TResult>(Func<TResult>) method as a quick way to call StartNew with default parameters. ただし、次の2つのメソッドの動作に違いがあることに注意してください。 Task.Run<TResult>(Func<TResult>) 既定では、TaskCreationOptions.AttachedToParent のオプションで開始された子タスクが現在の Task<TResult> インスタンスにアタッチすることはできません。一方、StartNew<TResult>(Func<TResult>) は使用できません。Note, however, that there is a difference in behavior between the two methods regarding : Task.Run<TResult>(Func<TResult>) by default does not allow child tasks started with the TaskCreationOptions.AttachedToParent option to attach to the current Task<TResult> instance, whereas StartNew<TResult>(Func<TResult>) does. 詳細とコード例については、@no__t のエントリを参照してください。.NET での並列プログラミングに関するブログの「no__t」をご覧ください。For more information and code examples, see the entry Task.Run vs. Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew<TResult>(Func<Object,TResult>, Object)
Task<TResult> を作成して開始します。Creates and starts a Task<TResult>.
public:
generic <typename TResult>
System::Threading::Tasks::Task<TResult> ^ StartNew(Func<System::Object ^, TResult> ^ function, System::Object ^ state);
public System.Threading.Tasks.Task<TResult> StartNew<TResult> (Func<object,TResult> function, object state);
member this.StartNew : Func<obj, 'Result> * obj -> System.Threading.Tasks.Task<'Result>
Public Function StartNew(Of TResult) (function As Func(Of Object, TResult), state As Object) As Task(Of TResult)
型パラメーター
- TResult
Task<TResult> を通じて取得できる結果の型。The type of the result available through the Task<TResult>.
パラメーター
Task<TResult> を通じて取得される結果を返す関数デリゲート。A function delegate that returns the future result to be available through the Task<TResult>.
- state
- Object
function
デリゲートによって使用されるデータを格納しているオブジェクト。An object containing data to be used by the function
delegate.
戻り値
開始された Task<TResult>。The started Task<TResult>.
例外
function
は null
です。function
is null
.
注釈
StartNew の呼び出しは、そのコンストラクターの1つを使用して Task<TResult> を作成し、Start を呼び出して実行のスケジュールを設定することと機能的に同じです。Calling StartNew is functionally equivalent to creating a Task<TResult> using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew を簡単に呼び出すことができるように、Run メソッドを @no__t 2 オブジェクトと共に使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Run method with an Action object as a quick way to call StartNew with default parameters. 詳細とコード例については、@no__t のエントリを参照してください。.NET での並列プログラミングに関するブログの「no__t」をご覧ください。For more information and code examples, see the entry Task.Run vs. Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew<TResult>(Func<TResult>, CancellationToken)
Task<TResult> を作成して開始します。Creates and starts a Task<TResult>.
public:
generic <typename TResult>
System::Threading::Tasks::Task<TResult> ^ StartNew(Func<TResult> ^ function, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<TResult> StartNew<TResult> (Func<TResult> function, System.Threading.CancellationToken cancellationToken);
member this.StartNew : Func<'Result> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'Result>
型パラメーター
- TResult
Task<TResult> を通じて取得できる結果の型。The type of the result available through the Task<TResult>.
パラメーター
- function
- Func<TResult>
Task<TResult> を通じて取得される結果を返す関数デリゲート。A function delegate that returns the future result to be available through the Task<TResult>.
- cancellationToken
- CancellationToken
新しい CancellationToken に割り当てられる Task。The CancellationToken that will be assigned to the new Task
戻り値
開始された Task<TResult>。The started Task<TResult>.
例外
指定された CancellationToken は既に破棄されています。The provided CancellationToken has already been disposed.
function
は null
です。function
is null
.
例
次の例では、2つのタスクを使用して、F100 = F100-1 + F100 と、シード値 F1 = 1、F2 = 1、F1 = 0、F2 = 1 で終わるフィボナッチ数列を計算します。The following example uses two tasks to compute the Fibonacci sequence ending in F100 = F100-1 + F100-2 with seed values F1= 1, F2 = 1 and F1 = 0, F2= 1. 時間の約半分は、操作の実行時にキャンセルトークンが設定されます。Approximately half of the time, a cancellation token is set as the operations execute. この例の出力は、2つのタスクが正常に完了し、トークンが取り消された場合の結果を示しています。The output from the example shows the result if the two tasks complete successfully and if the token is cancelled.
using System;
using System.Collections.Generic;
using System.Numerics;
using System.Threading;
using System.Threading.Tasks;
public class Example
{
public static void Main()
{
var rnd = new Random();
var tasks = new List<Task<BigInteger[]>>();
var source = new CancellationTokenSource();
var token = source.Token;
for (int ctr = 0; ctr <= 1; ctr++) {
int start = ctr;
tasks.Add(Task.Run( () => { BigInteger[] sequence = new BigInteger[100];
sequence[0] = start;
sequence[1] = 1;
for (int index = 2; index <= sequence.GetUpperBound(0); index++) {
token.ThrowIfCancellationRequested();
sequence[index] = sequence[index - 1] + sequence[index - 2];
}
return sequence;
}, token));
}
if (rnd.Next(0, 2) == 1)
source.Cancel();
try {
Task.WaitAll(tasks.ToArray());
foreach (var t in tasks)
Console.WriteLine("{0}, {1}...{2:N0}", t.Result[0], t.Result[1],
t.Result[99]);
}
catch (AggregateException e) {
foreach (var ex in e.InnerExceptions)
Console.WriteLine("{0}: {1}", ex.GetType().Name, ex.Message);
}
}
}
// The example displays either the following output:
// 0, 1...218,922,995,834,555,169,026
// 1, 1...354,224,848,179,261,915,075
// or the following output:
// TaskCanceledException: A task was canceled.
// TaskCanceledException: A task was canceled.
Imports System.Collections.Generic
Imports System.Numerics
Imports System.Threading
Imports System.Threading.Tasks
Module Example
Public Sub Main()
Dim rnd As New Random()
Dim tasks As New List(Of Task(Of BigInteger()))
Dim source As New CancellationTokenSource
Dim token As CancellationToken = source.Token
For ctr As Integer = 0 To 1
Dim start As Integer = ctr
tasks.Add(Task.Run(Function()
Dim sequence(99) As BigInteger
sequence(0) = start
sequence(1) = 1
For index As Integer = 2 To sequence.GetUpperBound(0)
token.ThrowIfCancellationRequested()
sequence(index) = sequence(index - 1) + sequence(index - 2)
Next
Return sequence
End Function, token))
Next
If rnd.Next(0, 2) = 1 Then source.Cancel
Try
Task.WaitAll(tasks.ToArray())
For Each t In tasks
Console.WriteLine("{0}, {1}...{2:N0}", t.Result(0), t.Result(1),
t.Result(99))
Next
Catch e As AggregateException
For Each ex In e.InnerExceptions
Console.WriteLine("{0}: {1}", ex.GetType().Name, ex.Message)
Next
End Try
End Sub
End Module
' The example displays either the following output:
' 0, 1...218,922,995,834,555,169,026
' 1, 1...354,224,848,179,261,915,075
' or the following output:
' TaskCanceledException: A task was canceled.
' TaskCanceledException: A task was canceled.
注釈
@No__t-0 の呼び出しは、そのコンストラクターの1つを使用して Task<TResult> を作成し、Start を呼び出して実行をスケジュールすることと機能的に同等です。Calling StartNew is functionally equivalent to creating a Task<TResult> using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew<TResult>(Func<TResult>, CancellationToken) を呼び出す簡単な方法として、Task.Run<TResult>(Func<TResult>, CancellationToken) メソッドを使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Task.Run<TResult>(Func<TResult>, CancellationToken) method as a quick way to call StartNew<TResult>(Func<TResult>, CancellationToken) with default parameters. ただし、次の2つのメソッドの動作に違いがあることに注意してください。 Task.Run<TResult>(Func<TResult>, CancellationToken) 既定では、TaskCreationOptions.AttachedToParent のオプションで開始された子タスクが現在の Task<TResult> インスタンスにアタッチすることはできません。一方、StartNew<TResult>(Func<TResult>, CancellationToken) は使用できません。Note, however, that there is a difference in behavior between the two methods regarding : Task.Run<TResult>(Func<TResult>, CancellationToken) by default does not allow child tasks started with the TaskCreationOptions.AttachedToParent option to attach to the current Task<TResult> instance, whereas StartNew<TResult>(Func<TResult>, CancellationToken) does. 詳細とコード例については、@no__t のエントリを参照してください。.NET での並列プログラミングに関するブログの「no__t」をご覧ください。For more information and code examples, see the entry Task.Run vs. Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew<TResult>(Func<TResult>, TaskCreationOptions)
Task<TResult> を作成して開始します。Creates and starts a Task<TResult>.
public:
generic <typename TResult>
System::Threading::Tasks::Task<TResult> ^ StartNew(Func<TResult> ^ function, System::Threading::Tasks::TaskCreationOptions creationOptions);
public System.Threading.Tasks.Task<TResult> StartNew<TResult> (Func<TResult> function, System.Threading.Tasks.TaskCreationOptions creationOptions);
member this.StartNew : Func<'Result> * System.Threading.Tasks.TaskCreationOptions -> System.Threading.Tasks.Task<'Result>
Public Function StartNew(Of TResult) (function As Func(Of TResult), creationOptions As TaskCreationOptions) As Task(Of TResult)
型パラメーター
- TResult
Task<TResult> を通じて取得できる結果の型。The type of the result available through the Task<TResult>.
パラメーター
- function
- Func<TResult>
Task<TResult> を通じて取得される結果を返す関数デリゲート。A function delegate that returns the future result to be available through the Task<TResult>.
- creationOptions
- TaskCreationOptions
作成された Task<TResult> の動作を制御する TaskCreationOptions 値。A TaskCreationOptions value that controls the behavior of the created Task<TResult>.
戻り値
開始された Task<TResult>。The started Task<TResult>.
例外
function
は null
です。function
is null
.
creationOptions
に無効な TaskCreationOptions 値が指定されています。creationOptions
specifies an invalid TaskCreationOptions value. 詳細については、FromAsync(Func<AsyncCallback,Object,IAsyncResult>, Action<IAsyncResult>, Object, TaskCreationOptions) の「解説」を参照してください。For more information, see the Remarks for FromAsync(Func<AsyncCallback,Object,IAsyncResult>, Action<IAsyncResult>, Object, TaskCreationOptions)
注釈
StartNew の呼び出しは、そのコンストラクターの1つを使用して Task<TResult> を作成し、Start を呼び出して実行のスケジュールを設定することと機能的に同じです。Calling StartNew is functionally equivalent to creating a Task<TResult> using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew を簡単に呼び出すことができるように、Run メソッドを @no__t 2 オブジェクトと共に使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Run method with an Action object as a quick way to call StartNew with default parameters. 詳細とコード例については、@no__t のエントリを参照してください。.NET での並列プログラミングに関するブログの「no__t」をご覧ください。For more information and code examples, see the entry Task.Run vs. Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew<TResult>(Func<Object,TResult>, Object, CancellationToken)
Task<TResult> を作成して開始します。Creates and starts a Task<TResult>.
public:
generic <typename TResult>
System::Threading::Tasks::Task<TResult> ^ StartNew(Func<System::Object ^, TResult> ^ function, System::Object ^ state, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<TResult> StartNew<TResult> (Func<object,TResult> function, object state, System.Threading.CancellationToken cancellationToken);
member this.StartNew : Func<obj, 'Result> * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'Result>
型パラメーター
- TResult
Task<TResult> を通じて取得できる結果の型。The type of the result available through the Task<TResult>.
パラメーター
Task<TResult> を通じて取得される結果を返す関数デリゲート。A function delegate that returns the future result to be available through the Task<TResult>.
- state
- Object
function
デリゲートによって使用されるデータを格納しているオブジェクト。An object containing data to be used by the function
delegate.
- cancellationToken
- CancellationToken
新しい CancellationToken に割り当てられる Task。The CancellationToken that will be assigned to the new Task
戻り値
開始された Task<TResult>。The started Task<TResult>.
例外
指定された CancellationToken は既に破棄されています。The provided CancellationToken has already been disposed.
function
が null
です。function
is null
.
注釈
StartNew の呼び出しは、そのコンストラクターの1つを使用して Task<TResult> を作成し、Start を呼び出して実行のスケジュールを設定することと機能的に同じです。Calling StartNew is functionally equivalent to creating a Task<TResult> using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew を簡単に呼び出すことができるように、Run メソッドを @no__t 2 オブジェクトと共に使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Run method with an Action object as a quick way to call StartNew with default parameters. 詳細とコード例については、@no__t のエントリを参照してください。.NET での並列プログラミングに関するブログの「no__t」をご覧ください。For more information and code examples, see the entry Task.Run vs. Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew<TResult>(Func<Object,TResult>, Object, TaskCreationOptions)
Task<TResult> を作成して開始します。Creates and starts a Task<TResult>.
public:
generic <typename TResult>
System::Threading::Tasks::Task<TResult> ^ StartNew(Func<System::Object ^, TResult> ^ function, System::Object ^ state, System::Threading::Tasks::TaskCreationOptions creationOptions);
public System.Threading.Tasks.Task<TResult> StartNew<TResult> (Func<object,TResult> function, object state, System.Threading.Tasks.TaskCreationOptions creationOptions);
member this.StartNew : Func<obj, 'Result> * obj * System.Threading.Tasks.TaskCreationOptions -> System.Threading.Tasks.Task<'Result>
Public Function StartNew(Of TResult) (function As Func(Of Object, TResult), state As Object, creationOptions As TaskCreationOptions) As Task(Of TResult)
型パラメーター
- TResult
Task<TResult> を通じて取得できる結果の型。The type of the result available through the Task<TResult>.
パラメーター
Task<TResult> を通じて取得される結果を返す関数デリゲート。A function delegate that returns the future result to be available through the Task<TResult>.
- state
- Object
function
デリゲートによって使用されるデータを格納しているオブジェクト。An object containing data to be used by the function
delegate.
- creationOptions
- TaskCreationOptions
作成された Task<TResult> の動作を制御する TaskCreationOptions 値。A TaskCreationOptions value that controls the behavior of the created Task<TResult>.
戻り値
開始された Task<TResult>。The started Task<TResult>.
例外
function
が null
です。function
is null
.
creationOptions
に無効な TaskCreationOptions 値が指定されています。creationOptions
specifies an invalid TaskCreationOptions value. 詳細については、FromAsync(Func<AsyncCallback,Object,IAsyncResult>, Action<IAsyncResult>, Object, TaskCreationOptions) の「解説」を参照してください。For more information, see the Remarks for FromAsync(Func<AsyncCallback,Object,IAsyncResult>, Action<IAsyncResult>, Object, TaskCreationOptions)
注釈
StartNew の呼び出しは、そのコンストラクターの1つを使用して Task<TResult> を作成し、Start を呼び出して実行のスケジュールを設定することと機能的に同じです。Calling StartNew is functionally equivalent to creating a Task<TResult> using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew を簡単に呼び出すことができるように、Run メソッドを @no__t 2 オブジェクトと共に使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Run method with an Action object as a quick way to call StartNew with default parameters. 詳細とコード例については、@no__t のエントリを参照してください。.NET での並列プログラミングに関するブログの「no__t」をご覧ください。For more information and code examples, see the entry Task.Run vs. Task.Factory.StartNew in the Parallel Programming with .NET blog.
こちらもご覧ください
StartNew<TResult>(Func<Object,TResult>, Object, CancellationToken, TaskCreationOptions, TaskScheduler)
Task<TResult> を作成して開始します。Creates and starts a Task<TResult>.
public:
generic <typename TResult>
System::Threading::Tasks::Task<TResult> ^ StartNew(Func<System::Object ^, TResult> ^ function, System::Object ^ state, System::Threading::CancellationToken cancellationToken, System::Threading::Tasks::TaskCreationOptions creationOptions, System::Threading::Tasks::TaskScheduler ^ scheduler);
public System.Threading.Tasks.Task<TResult> StartNew<TResult> (Func<object,TResult> function, object state, System.Threading.CancellationToken cancellationToken, System.Threading.Tasks.TaskCreationOptions creationOptions, System.Threading.Tasks.TaskScheduler scheduler);
member this.StartNew : Func<obj, 'Result> * obj * System.Threading.CancellationToken * System.Threading.Tasks.TaskCreationOptions * System.Threading.Tasks.TaskScheduler -> System.Threading.Tasks.Task<'Result>
型パラメーター
- TResult
Task<TResult> を通じて取得できる結果の型。The type of the result available through the Task<TResult>.
パラメーター
Task<TResult> を通じて取得される結果を返す関数デリゲート。A function delegate that returns the future result to be available through the Task<TResult>.
- state
- Object
function
デリゲートによって使用されるデータを格納しているオブジェクト。An object containing data to be used by the function
delegate.
- cancellationToken
- CancellationToken
新しいタスクに割り当てられる CancellationToken。The CancellationToken that will be assigned to the new task.
- creationOptions
- TaskCreationOptions
作成された Task<TResult> の動作を制御する TaskCreationOptions 値。A TaskCreationOptions value that controls the behavior of the created Task<TResult>.
- scheduler
- TaskScheduler
作成された TaskScheduler をスケジュールするときに使用する Task<TResult>。The TaskScheduler that is used to schedule the created Task<TResult>.
戻り値
開始された Task<TResult>。The started Task<TResult>.
例外
指定された CancellationToken は既に破棄されています。The provided CancellationToken has already been disposed.
function
は null
です。function
is null
.
- または --or-
scheduler
は null
です。scheduler
is null
.
creationOptions
に無効な TaskCreationOptions 値が指定されています。creationOptions
specifies an invalid TaskCreationOptions value. 詳細については、FromAsync(Func<AsyncCallback,Object,IAsyncResult>, Action<IAsyncResult>, Object, TaskCreationOptions) の「解説」を参照してください。For more information, see the Remarks for FromAsync(Func<AsyncCallback,Object,IAsyncResult>, Action<IAsyncResult>, Object, TaskCreationOptions)
注釈
StartNew の呼び出しは、そのコンストラクターの1つを使用して Task<TResult> を作成し、Start を呼び出して実行のスケジュールを設定することと機能的に同じです。Calling StartNew is functionally equivalent to creating a Task<TResult> using one of its constructors and then calling Start to schedule it for execution.
@No__t-0 以降では、既定のパラメーターを使用して StartNew を簡単に呼び出すことができるように、Run メソッドを @no__t 2 オブジェクトと共に使用できます。Starting with the .NET Framework 4.5.NET Framework 4.5, you can use the Run method with an Action object as a quick way to call StartNew with default parameters. 詳細とコード例については、@no__t のエントリを参照してください。.NET での並列プログラミングに関するブログの「no__t」をご覧ください。For more information and code examples, see the entry Task.Run vs. Task.Factory.StartNew in the Parallel Programming with .NET blog.