Como: Executar inicialização lenta de objetos
O System.Lazy<T> classe simplifica o trabalho de executar a inicialização lenta e a instanciação de objetos. Inicializando os objetos de maneira lenta, você pode evitar ter que criá-las em todos os se eles nunca são necessários, ou você pode adiar a inicialização até que eles são acessados pela primeira vez. Para obter mais informações, consulte Inicialização lenta.
Exemplo
O exemplo a seguir mostra como inicializar um valor com Lazy<T>. Suponha que a variável lenta pode não ser necessária, dependendo do outro código que define o someCondition variáveis para true ou false.
Dim someCondition As Boolean = False
Sub Main()
'Initializing a value with a big computation, computed in parallel
Dim _data As Lazy(Of Integer) = New Lazy(Of Integer)(Function()
Dim result =
ParallelEnumerable.Range(0, 1000).
Aggregate(Function(x, y)
Return x + y
End Function)
Return result
End Function)
' do work that may or may not set someCondition to True
' ...
' Initialize the data only if needed
If someCondition = True Then
If (_data.Value > 100) Then
Console.WriteLine("Good data")
End If
End If
End Sub
static bool someCondition = false;
//Initializing a value with a big computation, computed in parallel
Lazy<int> _data = new Lazy<int>(delegate
{
return ParallelEnumerable.Range(0, 1000).
Select(i => Compute(i)).Aggregate((x,y) => x + y);
}, LazyExecutionMode.EnsureSingleThreadSafeExecution);
// Do some work that may or may not set someCondition to true.
// ...
// Initialize the data only if necessary
if (someCondition)
{
if (_data.Value > 100)
{
Console.WriteLine("Good data");
}
}
O exemplo a seguir mostra como usar o System.Threading.ThreadLocal<T> classe para inicializar um tipo que é visível apenas para a instância do objeto atual no thread atual.
'Initializing a value per thread, per instance
Dim _scratchArrays =
New ThreadLocal(Of Integer()())(Function() InitializeArrays())
' use the thread-local data
Dim tempArr As Integer() = _scratchArrays.Value(i)
' ...
End Sub
Function InitializeArrays() As Integer()()
Dim result(10)() As Integer
' Initialize the arrays on the current thread.
' ...
Return result
End Function
//Initializing a value per thread, per instance
ThreadLocal<int[][]> _scratchArrays =
new ThreadLocal<int[][]>(InitializeArrays);
// . . .
static int[][] InitializeArrays () {return new int[][]}
// . . .
// use the thread-local data
int i = 8;
int [] tempArr = _scratchArrays.Value[i];
Consulte também
Referência
System.Threading.LazyInitializer