100  
csharp
Advertisement
Поиск  
Always will be ready notify the world about expectations as easy as possible: job change page
Aug 9, 2021

How getting Lazy in C#

Автор:
MBARK T3STO
Источник:
Просмотров:
984

If you’re anything like me, you’ve looked for ways of making your applications faster. In this article, I’ll show you a somewhat unknown class in the .NET framework that makes lazy creation of objects easy to do and thread safe.

The Old Way

Before we get to the fun stuff, let’s take a look at how you might try to do these things without .NET’s Lazy<T> classes.

Typically when you design a class, you might start with code like this:

You might eventually find that as the number of things you need to instantiate grows, the performance degrades significantly on creation of the object.

In that case, you might make a decision to lazy load components of the Starship class. That is, you might make a decision to only instantiate them when they’re needed.

A typical version of that would look like this:

Lots of lines there. Thankfully, this can be compressed a bit:

Well, that’s at least concise, though it might not be extremely easy to read.

Both the expanded and the concise version of this do have a threading issue, however.

If two callers are trying to get a property, it’s possible that one might get past the null check and then its thread sleeps while another thread also passes that null check. In this case, two instances of ExpensiveWarpCore are created and then assigned to _warpCore. This may be a non-issue, or it may be significant.

In order to fully work around this limitation, you need to do something like the following:

While this is technically safer, you can start to see how doing this several times over in your class as you introduce new lazy-loaded properties would become tedious and make people tend to skim the code.

Introducing Lazy<T>

.NET provides a generic class called Lazy which allows you to lazily instantiate objects the first time their value is requested.

Let’s take a look at the same code using Lazy<T>:

Interestingly, we moved the complexity out of the property getter and put it in the backing field.

Let’s take a look at that lazy initializer:

new Lazy<WarpCore>(() => new ExpensiveWarpCore(), true)

First, we’re invoking the constructor on Lazy and providing a generic type argument telling the class that it will provide a WarpCore instance.

Next, we pass in a Func<WarpCore> argument that is invoked to create the instance we need. In this case, we’re just calling the ExpensiveWarpCore constructor. Note that if we were just invoking the default constructor on WarpCore instead of ExpensiveWarpCore, we wouldn’t even need to specify this Func value.

Finally, we’re passing in a true boolean value to the final parameter indicating that this instance should be thread safe.

Closing Thoughts

You can see in just a few lines how you can use Lazy<T> to safely and concisely instantiate objects exactly when they’re first used, and can do so in a thread safe manner if you choose to.

As with anything, there are tradeoffs to using Lazy. Primarily, these tradeoffs involve syntax which may be hard to read for newer developers.

All in all, Lazy is something I would strongly recommend adding to your standard practices. The downsides are minimal and the ability to standardize on simple patterns is a big win.

Похожее
Mar 22
Author: Dayanand Thombare
LINQ (Language Integrated Query) has revolutionized the way we interact with data in C#. It offers a consistent, readable, and concise way to manipulate collections, databases, XML, and more. However, the beauty and ease of LINQ can sometimes mask performance...
Apr 8
Author: Dev Leader
async void methods in C# are a source of a lot of problems for many developers getting into writing async await code. The pattern that we’re suggested to use is of course async Task, but there are cases — like...
May 7
Author: Zeeshan Wazir
C# is a powerful programming language, widely used for software development across various domains. One crucial aspect of application development is dealing with PDFs, whether it's generating PDFs, extracting information from existing PDF documents, or manipulating PDF files.In this article,...
Nov 19, 2020
We will demonstrate how to setup Elasticsearch and learn how to write basics statements. You will learn about the structure, commands, tools in Elasticsearch API and get it up and running using standard settings.IntroductionWe will be talking about the basics...
Написать сообщение
Почта
Имя
*Сообщение


© 1999–2024 WebDynamics
1980–... Sergey Drozdov
Area of interests: .NET Framework | .NET Core | C# | ASP.NET | Windows Forms | WPF | HTML5 | CSS3 | jQuery | AJAX | Angular | React | MS SQL Server | Transact-SQL | ADO.NET | Entity Framework | IIS | OOP | OOA | OOD | WCF | WPF | MSMQ | MVC | MVP | MVVM | Design Patterns | Enterprise Architecture | Scrum | Kanban