vote up 0 vote down star
1

Platform: Visual Studio 2008 SP1 with Resharper 4.1, .NET 3.5

I have a class with a static method, GetProperty<T> that returns a property value lazily.

private static T GetProperty<T>(T backingField, Func<T> factory) 
    where T : class 
{
    if (backingField == null)
        backingField = factory();
    return backingField;
}

But when I use above method to return a property, I am getting two warnings that says that private backing fields are not assigned. But they are assigned later on only when they are needed.

alt text

Is this warning ignorable?
-- Or --
Is my appoach to loading a property flawed?

flag

I believe you would get the same warning using FXCop. – Michael Meadows Apr 24 at 17:52

4 Answers

vote up 13 vote down check

Your method is flawed. To take this approach you need to make backingField a ref parameter.

private static T GetProperty<T>(ref T backingField, Func<T> factory)

Then on GetProperty, pass ref _ImagXpress or ref _PdfXpress.

The way you're doing it now just assigns a new value to the parameter, not to the actual backing field.

link|flag
+1, although ref variables are generally a code smell. Since it's private, at least the ref ugliness is fully encapsulated. – Michael Meadows Apr 24 at 17:50
1  
You are passing by value, which means that if you change the VALUE (meaning what the reference variable actually points to), you only update your local copy. You have to pass by REFERENCE to make changes to the VALUE propagate back. – Adam Robinson Apr 24 at 17:53
2  
a ref parameter is functionally similar to a double pointer, which allows you to substitute the entire object reference. A value parameter is functionally similar to a single pointer, reassigning the parameter (backingField = factory()) will only replace it in the scope of the method. You can manipulate state of a value parameter, but not its reference to the object on the heap. – Michael Meadows Apr 24 at 17:55
1  
Object references in C# are NOT pointers. They're explicitly NOT pointers, and there's a big difference. Adding ref to the argument makes it act more like a pointer, which is what you're wanting in this situation. – ascalonx Apr 24 at 17:57
2  
Jon Skeet can answer this much better than I can: yoda.arachsys.com/csharp/parameters.html/… – Michael Meadows Apr 24 at 17:57
show 4 more comments
vote up 2 vote down

As I stated in comments on another answer, the need for a ref parameter is a code smell. First of all, if you're doing this in a method, you're breaking the single responsibility principle, but more importantly, the code is only reusable within your inheritance heirarchy.

There's a pattern to be derived here:

public class LazyInit<T>
    where T : class
{
    private readonly Func<T> _creationMethod;
    private readonly object syncRoot;
    private T _instance;

    [DebuggerHidden]
    private LazyInit()
    {
        syncRoot = new object();
    }

    [DebuggerHidden]
    public LazyInit(Func<T> creationMethod)
        : this()
    {
        _creationMethod = creationMethod;
    }

    public T Instance
    {
        [DebuggerHidden]
        get
        {
            lock (syncRoot)
            {
                if (_instance == null)
                    _instance = _creationMethod();
                return _instance;
            }
        }
    }

    public static LazyInit<T> Create<U>() where U : class, T, new()
    {
        return new LazyInit<T>(() => new U());
    }

    [DebuggerHidden]
    public static implicit operator LazyInit<T>(Func<T> function)
    {
        return new LazyInit<T>(function);
    }
}

This allows you to do this:

public class Foo
{
    private readonly LazyInit<Bar> _bar1 = LazyInit<Bar>.Create<Bar>();
    private readonly LazyInit<Bar> _bar2 = new LazyInit<Bar>(() => new Bar("foo"));

    public Bar Bar1
    {
        get { return _bar1.Instance; }
    }

    public Bar Bar2
    {
        get { return _bar2.Instance; }
    }
}
link|flag
Seems a bit over-engineered, but should work and is certainly a creative solution! – Adam Robinson Apr 24 at 18:23
over-engineered for this particular solution, but it provides a thread-safe (relatively) lazy initialization method that can reused everywhere. It's production code I use that is a result of several iterations of refactoring lazy initialization code. – Michael Meadows Apr 24 at 18:37
@Michael Meadows: Wow, I think i could integrate LazyInit into my code. Thank you for providing difference perspective on solving the issue. I haven't thought about creating an entirely new class for lazy loading. – Sung Meister Apr 24 at 18:53
vote up 1 vote down

To propose a different solution:

I'd say that you're not saving a whole lot by encapsulating that logic into a separate method. You're increasing your complexity without much gain. I'd suggest doing it this way:

protected PdfXpress PdfXpress
{
    get
    {
        if (_PdfXpress == null)
            _PdfXpress = PdfXpressSupport.Create();

        return _PdfXpress;
    }
}

protected ImagXpress ImagXpress
{
    get
    {
        if (_ImagXpress == null)
            _ImagXpress = IMagXpressSupport.Create();

        return _ImagXpress;
    }
}

You're adding a few lines, but decreasing complexity considerably.

link|flag
That was my initial implementation; But I would have to add more properties so i ended up refactoring a method to encapsulate "null" check. – Sung Meister Apr 24 at 18:07
dance: There is such a thing as over-engineering :) I would greatly favor this approach, as it's much clearer what's going on. – Adam Robinson Apr 24 at 18:12
@Adam: I am now beginning to see that, I tend to refactor/over-engineer too much... – Sung Meister Apr 24 at 18:51
vote up 5 vote down

Your approach is flawed. You're fields will never be set to anything. the backingField argument is being set in the GetProperty<T> method, but this does not update the field you're passing in. You'll want to pass in that argument with the ref keyword attached to it like this:

private static T GetProperty<T>(ref T backingField, Func<T> factory)
link|flag

Your Answer

Get an OpenID
or

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