I learned about Lazy class in .Net recently and have been probably over-using it. I have an example below where things could have been evaluated in an eager fashion, but that would result in repeating the same calculation if called over and over. In this particular example the cost of using Lazy might not justify the benefit, and I am not sure about this, since I do not yet understand just how expensive lambdas and lazy invocation are. I like using chained Lazy properties, because I can break complex logic into small, manageable chunks. I also no longer need to think about where is the best place to initialize stuff - all I need to know is that things will not be initialized if I do not use them and will be initialized exactly once before I start using them. However, once I start using lazy and lambdas, what was a simple class is now more complex. I cannot objectively decide when this is justified and when this is an overkill in terms of complexity, readability, possibly speed. What would your general recommendation be?

    // This is set once during initialization.
    // The other 3 properties are derived from this one.
    // Ends in .dat
    public string DatFileName
    {
        get;
        private set;
    }

    private Lazy<string> DatFileBase
    {
        get
        {
            // Removes .dat
            return new Lazy<string>(() => Path.GetFileNameWithoutExtension(this.DatFileName));
        }
    }

    public Lazy<string> MicrosoftFormatName
    {
        get
        {
            return new Lazy<string>(() => this.DatFileBase + "_m.fmt");
        }
    }

    public Lazy<string> OracleFormatName
    {
        get
        {
            return new Lazy<string>(() => this.DatFileBase + "_o.fmt");
        }
    }
link|improve this question

76% accept rate
1  
I asked a similar question, which you might find interesting => stackoverflow.com/questions/7567342/disadvantages-of-lazyt – Fuji Oct 7 '11 at 17:14
feedback

4 Answers

up vote 2 down vote accepted

This is probably a little bit of overkill.

Lazy should usually be used when the generic type is expensive to create or evaluate, and/or when the generic type is not always needed in every usage of the dependent class.

More than likely, anything calling your getters here will need an actual string value immediately upon calling your getter. To return a Lazy in such a case is unnecessary, as the calling code will simply evaluate the Lazy instance immediately to get what it really needs. The "just-in-time" nature of Lazy is wasted here, and therefore, YAGNI (You Ain't Gonna Need It).

That said, the "overhead" inherent in Lazy isn't all that much. A Lazy is little more than a class referencing a lambda that will produce the generic type. Lambdas are relatively cheap to define and execute; they're just methods, which are given a mashup name by the CLR when compiled. The instantiation of the extra class is the main kicker, and even then it's not terrible. However, it's unnecessary overhead from both a coding and performance perspective.

link|improve this answer
feedback

You said "i no longer need to think about where is the best place to initialize stuff".

This is a bad habit to get in to. You should know exactly what's going on in your program

You should Lazy<> when there's an object that needs to be passed, but requires some computation. So only when it will be used it will be calculated.

Besides that, you need to remember that the object you retrieve with the lazy is not the object that was in the program's state when it was requested.
You'll get the object itself only when it will be used. This will be hard to debug later on if you get objects that are important to the program's state.

link|improve this answer
"You should know exactly what's going on in your program" - even if I am trying to be agile and to have some implementation and see how well it works out, and is subject to further change? In the past I have moved logic from one place to another and only settled on something very concrete after I felt like the designed is more or less complete. I know my original question has no mention of agile; this is a follow-up question. – Hamish Grubijan Oct 7 '11 at 17:13
1  
You can see anything as subject to change, but it would cost less in the long run to just do it right the first time. If you are being lazy, it might jump right back at you when you're trying to debug. And it's much easier to locate and fix a bug that is caused from an un-initialized object, than to locate and fix a bug that is caused from an object that is initialized lazily, when you're not sure when it is happening. – Yochai Timmer Oct 7 '11 at 17:18
A couple of hours of extra designing is nothing compared to the headache of debugging. – Yochai Timmer Oct 7 '11 at 17:19
feedback

Using Lazy for creating simple string properties is indeed an overkill. Initializing the instance of Lazy with lambda parameter is probably much more expensive than doing single string operation. There's one more important argument that others didn't mention yet - remember that lambda parameter is resolved by the compiler to quite complex structure, far more comples than string concatenation.

link|improve this answer
A lambda function is not that complex; it is simply placed in the object where it is defined as a private method with a mashup name that the CLR can reference it by. Doesn't mean it's not overkill, but it's not as bad as you say. – KeithS Oct 7 '11 at 17:17
feedback

The other area that is good to use lazy loading is in a type that can be consumed in a partial state. As an example, consider the following:

public class Artist
{
     public string Name { get; set; }
     public Lazy<Manager> Manager { get; internal set; }
}

In the above example, consumers may only need to utilise our Name property, but having to populate fields which may or may not be used could be a place for lazy loading. I say could not should, as there are always situations when it may be more performant to load all up front.... depending on what your application needs to do.

link|improve this answer
Did you mean public Lazy<string> manager? In this example, is lazy manager being set at initialization time, or is it possible that it will be null when you try to run it? Yes, nitpicking, but I wanted to clarify anyway. – Hamish Grubijan Oct 7 '11 at 17:31
@HamishGrubijan - Sorry there was a glitch. There isn't really much point in a lazy primitive in this sense, but certainly for more complex types - see edit. – Matthew Abbott Oct 7 '11 at 18:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.