Is there a rule of thumb to follow when to use the new keyword and when not to when declaring objects?
List<MyCustomClass> listCustClass = GetList();
OR
List<MyCustomClass> listCustClass = new List<MyCustomClass>();
listCustClass = GetList();
|
3
|
Is there a rule of thumb to follow when to use the
OR
|
||||||||||||
|
|
|
In your scenario it seems that the actual creation of the object is being performed inside your When created, your To sum it up everytime you create a new object then abandon it, like the second example, you're essentially wasting memory by filling the heap with useless information. |
||
|
|
|
|
Only your first example makes any sense in this case since in the second case you are immediately replacing the created list with the one returned by the method. Initializing a list to a new empty list makes sense in the cases where you are adding to that list or when it is possible that the method you are calling to populate the list may somehow result in a null value when you would otherwise expect an empty list. Examples where I might use initialization to a new, empty list.
or
|
||
|
|
|
|
In your second case you are creating a new object on the first line just to throw it away on the second line. Completely unnecessary. |
||
|
|
|
If you can inline it without losing meaning and clarity of what you're accomplishing, by all means, inline. Edit: And, as I regularly inline, I didn't even think about the orphaned object reference. Doh. =) |
||||||
|
|
|
You use the HTH, Kent |
||||
|
|
|
Don't think of it in terms of "should I use new when I declare". You use new when you are assigning (which can be part of a declaration). The first example is correct, the second is a needless waste of runtime resources. |
||
|
|
|
|
There is no rule of thumb, but there is common sense that you can apply most of the time. An object needs to be instantiated when it is being created. Your The first snippet is entirely appropriate, however. |
||
|
|
|
|
In C#, all instances of classes have to be created with the In this case, it appears that GetList() uses |
||
|
|
|
|
The new keyword is basically used to allocate space on the heap. If you are creating a value type (structs, etc...) you don't have to use the new keyword. However, reference variables have to be new'd before they are used. In your above example, it seems as though GetList() is returning a reference that is of type List which would have been created (new'd) somewhere within the function. Hence in this scenario, new'ing is pointless. |
||
|
|