vote up 10 vote down star
4

Due to a bug that was fixed in C# 4, the following program prints true. (Try it in LINQPad)

void Main() { new Derived(); }

class Base {
    public Base(Func<string> valueMaker) { Console.WriteLine(valueMaker()); }
}
class Derived : Base {
    string CheckNull() { return "Am I null? " + (this == null); }
    public Derived() : base(() => CheckNull()) { }
}

In VS2008 in Release mode, in throws an InvalidProgramException. (In Debug mode, it works fine)

In VS2010 Beta 2, it doesn't compile (I didn't try Beta 1); I learned that the hard way

Is there any other way to make this == null in pure C#?

flag

It's most likely a bug in C# 3.0 compiler. It works the way it should in C# 4.0. – Mehrdad Afshari Oct 21 at 13:07
Yes, it is. However, it was a useful bug, and I miss it. – SLaks Oct 21 at 13:09
Yes, that should not compile at all IMO. – leppie Oct 21 at 13:10
8  
@SLaks: Problem with bugs is that you can expect them to be fixed at some point so finding them "useful" is probably not wise. – AnthonyWJones Oct 21 at 13:13
2  
thanks! didn't know about LINQPad. it's cool! – thorn Oct 21 at 13:19
show 6 more comments

6 Answers

vote up 5 vote down check

This observation has been posted on StackOverflow in another question earlier today.

Marc's great answer to that question indicates that according to the spec (section 7.5.7), you shouldn't be able to access this in that context and the ability to do so in C# 3.0 compiler is a bug. C# 4.0 compiler is behaving correctly according to the spec (even in Beta 1, this is a compile time error):

§ 7.5.7 This access

A this-access consists of the reserved word this.

this-access:

this

A this-access is permitted only in the block of an instance constructor, an instance method, or an instance accessor.

link|flag
vote up 1 vote down

In case people are wondering, I was using this compiler bug in my program and only realized it didn't make sense when it failed to compile in C# 4.0.

class CustomFieldDescriptor : ColumnPropertyDescriptor {
	public CustomFieldDescriptor(DataColumn col) : base(col) { }

	protected override DataRow DataRow(ResolvedRow r) { return r.ImportedRow; }

	public override void SetValue(object component, object value) { ((ResolvedRow)component).ImportedRow[column] = value; }
	public override bool IsReadOnly { get { return false; } }
}

class AllPeopleColumnDescriptor : ColumnPropertyDescriptor {
	public AllPeopleColumnDescriptor(string fieldName) : base(App.DB.AllPeople.Columns[fieldName]) { }
	protected override DataRow DataRow(ResolvedRow r) { return r.Person.ResolvedRow; }
}
abstract class ColumnPropertyDescriptor : CalculatedPropertyDescriptor<object> {
	protected readonly DataColumn column;
	protected ColumnPropertyDescriptor(DataColumn col) : base(col.ColumnName, r => DataRow(r)[col]) { column = col; }
	public override Type PropertyType { get { return column.DataType; } }
	protected abstract DataRow DataRow(ResolvedRow r);
}
class CalculatedPropertyDescriptor<T> : PropertyDescriptor {
	public CalculatedPropertyDescriptor(string name, Func<ResolvedRow, T> getter) : base(name, null) { this.getter = getter; }

	public override Type ComponentType { get { return typeof(ResolvedRow); } }

	public override Type PropertyType { get { return typeof(T); } }
	Func<ResolvedRow, T> getter;
	public override object GetValue(object component) { return getter((ResolvedRow)component); }

	public override bool IsReadOnly { get { return true; } }
	public override bool CanResetValue(object component) { return false; }
	public override void ResetValue(object component) { }
	public override void SetValue(object component, object value) { }
	public override bool ShouldSerializeValue(object component) { return false; }
}

Since I didn't call the delegate in the constructor, the code worked fine.

link|flag
vote up 2 vote down

This isn't a "bug". This is you abusing the type system. You are never supposed to pass a reference to the current instance (this) to anyone within a constructor.

I could create a similar "bug" by calling a virtual method within the base class constructor as well.

Just because you can do something bad doesn't mean its a bug when you get bit by it.

link|flag
3  
It is a compiler bug. It generates invalid IL. (Read my answer) – SLaks Oct 21 at 13:11
3  
@Will: That's what compiler errors are for. – SLaks Oct 21 at 13:18
4  
@Will: It's a compiler bug. The compiler is supposed to generate valid, verifiable code for that code snippet or spit out an error message. When a compiler does not behave according to the spec, it is buggy. – Mehrdad Afshari Oct 21 at 13:22
1  
I find it hard not to argue with someone who relies on "compiler bugs" for their code to work, forgive me. – Will Oct 21 at 13:24
2  
@Will#4: When I wrote the code, I hadn't thought about the implications. I only realized that it didn't make sense when it stopped compiling in VS2010. – – SLaks Oct 21 at 13:48
show 8 more comments
vote up 7 vote down

The raw decompilation (Reflector with no optimizations) of the Debug mode binary is:

private class Derived : Program.Base
{
    // Methods
    public Derived()
    {
        base..ctor(new Func<string>(Program.Derived.<.ctor>b__0));
        return;
    }

    [CompilerGenerated]
    private static string <.ctor>b__0()
    {
        string CS$1$0000;
        CS$1$0000 = CS$1$0000.CheckNull();
    Label_0009:
        return CS$1$0000;
    }

    private string CheckNull()
    {
        string CS$1$0000;
        CS$1$0000 = "Am I null? " + ((bool) (this == null));
    Label_0017:
        return CS$1$0000;
    }
}

The CompilerGenerated method doesn't make sense; if you look at the IL (below), it's calling the method on a null string (!).

   .locals init (
        [0] string CS$1$0000)
    L_0000: ldloc.0 
    L_0001: call instance string CompilerBug.Program/Derived::CheckNull()
    L_0006: stloc.0 
    L_0007: br.s L_0009
    L_0009: ldloc.0 
    L_000a: ret

In Release mode, the local variable is optimized away, so it tries to push a non-existant variable on to the stack.

    L_0000: ldloc.0 
    L_0001: call instance string CompilerBug.Program/Derived::CheckNull()
    L_0006: ret

(Reflector crashes when turning it into C#)


EDIT: Does anyone (Eric Lippert?) know why the compiler emits the ldloc?

link|flag
vote up 0 vote down

I have had that! (and got proof too)

alt text

link|flag
How did you do it? – SLaks Oct 21 at 13:21
Was late, was a sign I should stop coding :) Was hacking our with DLR stuff IIRC. – leppie Oct 21 at 17:43
vote up 0 vote down

I could be wrong, but I'm pretty sure if your object is null there's never going to be a scenario where this applies.

For instance, how would you call CheckNull?

Derived derived = null;
Console.WriteLine(derived.CheckNull()); // this should throw a NullReferenceException
link|flag
2  
In a lambda in the constructor argument. Read the entire code snippet. (And try it if you don't believe me) – SLaks Oct 21 at 13:01
I agree although I do remember faintly something about how in C++ an object didn't have reference within it's constructor and I'm wondering if the (this == null) scenario is used in those cases to check whether a call to a method was made from the object's constructor before exposing a pointer to "this". Though, as far as I know in C#, there shouldn't be any cases where "this" would ever be null, not even in the Dispose or finalization methods. – jpierson Oct 21 at 13:05
The null value is captured at the right moment. – Henk Holterman Oct 21 at 13:10
I guess my point is that the very idea of this is mutually exclusive of the possibility of being null--sort of a "Cogito, ergo sum" of computer programming. Therefore your desire to use the expression this == null and ever have it return true strikes me as misguided. – Dan Oct 21 at 14:19
In other words: I did read your code; what I'm saying is that I question what you were trying to accomplish in the first place. – Dan Oct 21 at 14:20
show 1 more comment

Your Answer

Get an OpenID
or

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