vote up 2 vote down star

lets say I have the following

public class A 
{
   private string _someField;
   public string SomeField { get { return _someField; } }
}

For some reason I am checking the default of this class and I would like to set the default for a class, just like a default of type int is 0, I would like in the above class for my default of Somefield to be "hello";

int i = default(int); // i is 0
A myClass = default(A);
string s = myClass.SomeField; // s is hello

This is more just for my own theoretical satisfaction rather than practical application. Just wondering.

flag

I think a few of you dont know what the default keyword is test your code that you wrote – Brandon Grossutti Jun 18 at 17:47

6 Answers

vote up 3 vote down check

There is no way of overloading default(T).

To me, it really sounds like you're asking for non-nullable reference types which don't yet exist in .NET. Have a look here for an implementation: http://msmvps.com/blogs/jon_skeet/archive/2008/10/06/non-nullable-reference-types.aspx

link|flag
That is an interesting way around it Stefan, given that a struct is non nullable. – Brandon Grossutti Jun 18 at 17:52
vote up 5 vote down

No. The default for classes (reference types) is null and cannot be overloaded.

link|flag
1  
+1. default(T) == null where T : class – Mehrdad Afshari Jun 18 at 17:46
vote up 5 vote down

You cannot change what default(T) is for a T. It is always null for reference types, and the 'empty' value for value types (ie. for a struct, all members are at their default, uninitalized values).

link|flag
+1 Nicely done. – Andrew Hare Jun 18 at 17:47
vote up 0 vote down

In case of classes (reference types) the default keyword doesn't do anything for the members of the class, it just sets the whole reference to null

link|flag
vote up 0 vote down

While default() will always return null, you could use where to specify that the class must contain a parameterless constructor, so you can call new on it.

void SomeMethod<T>(T something) where T : new()
    {
        T newObject = new T();
    }
link|flag
vote up -1 vote down

This should do the job:

public class A 
{
   private string _someField = "hello";
   public string SomeField { get { return _someField; } }
}

Now when you create an instance of that class, the initial value of someField will be hello.

[Edit: This doesn't do quite what you want. Like others have noted in the comments, default(T) where T is a class will always result in null.

Instead you would create the class normally instead of using the 'default' keyword.

A myClass = new A();
string defaultValue = myClass.SomeField // This will be set to "hello" by default.

]

link|flag
default(T) is always null, that's the value after calling the default constructor. – Mehrdad Afshari Jun 18 at 17:45
This will cause a null reference exception when myClass is dereferenced. – Stefan Moser Jun 18 at 17:46
-1 If it were a struct perhaps but a default of T where T : class is always null. – Andrew Hare Jun 18 at 17:46
@Mehrdad: Yes, fair point, this wouldn't quite work with your existing code. You would just create the class normally - not using the keyword 'default' and the value of someField would always be set to "hello" when the class is first created. – Simon P Stevens Jun 18 at 17:46
@Simon P Stevens: While your statement is true it really has nothing to do with the question. – Andrew Hare Jun 18 at 17:48
show 6 more comments

Your Answer

Get an OpenID
or

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