Consider this example, it shows two possible ways of lazy initialization. Except for being thread-safe, are there any specific advantates of using Lazy<T> here?

class Customer {
    private decimal? _balance2;
    private static decimal GetBalanceOverNetwork() {
        //lengthy network operations
        Thread.Sleep(2000);
        return 99.9M;
    }

    public decimal? GetBalance2Lazily() {
        return _balance2 ?? (_balance2 = GetBalanceOverNetwork());
    }

    private readonly Lazy<decimal> _balance1 = new Lazy<decimal>(GetBalanceOverNetwork);

    public Lazy<decimal> Balance1 {
        get { return _balance1; }
    }
}

UPDATE:

Please consider above code as a simple example, data types are irrelevant, the point here is to compare Lazy <T> over standard lazy initialization.

link|improve this question

Given that _balance1 is already readonly, and the accessor doesn't do anything besides return the value, what are you gaining from using a property? – Karl Knechtel Jul 25 '11 at 7:50
@Karl, initialization without private set and constructor, no? – Michael Sagalovich Jul 25 '11 at 7:53
@Karl, probably nothing, except another way to confuse my fellow developers. – Valentin Vasilyev Jul 25 '11 at 7:54
Shouldn't GetBalance2Lazily() and Balance1 return a decimal, not decimal? or Lazy<decimal>? – Henrik Jul 25 '11 at 7:58
I used nullable decimal to use this nify null coalescing operator (??). I could easily use decimal type, but that would require more keystrokes. – Valentin Vasilyev Jul 25 '11 at 8:00
show 2 more comments
feedback

1 Answer

up vote 5 down vote accepted

It is semantically more correct.

When you use the Nullable<decimal>, what you say is that the value of null will stand for the "unevaluated" state. Although this is a common conversion, it is still arbitrary. There are million other ways to interpret null, so you should probably explain somewhere (in the documentation or at least as a comment) what null means in this case.

On the contrary, when you use Lazy<decimal>, your intentions are clear.

link|improve this answer
Fascinating! I should have thought of this. I often use the colourful term "brain damage" to refer to the inability to see what's more or less semantically correct and/or intuitive, as a result of having been forced by more primitive languages to do things in a more round-about way. It's always a shock to discover that one's own brain has been damaged :) – Karl Knechtel Jul 26 '11 at 3:02
feedback

Your Answer

 
or
required, but never shown

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