vote up 1 vote down star

I am wondering why, when in C#, if a use the set accessor to change a static class member, I get a Stack Overflow error.

I am not disputing this as a bug, I just want to know what exactly is going on in the internals of the machine.

EDIT :The question was a little unclear, sorry about that.

flag

60% accept rate
Could you provide an example? – Michael Damatov Mar 17 at 22:08
2  
You got a StackOverflowException, and immediately went to StackOverflow.com. Now, that's entertainment like you can't pay for. – bzlm Mar 17 at 22:18
1  
+1 @bzim. <g> – Ken White Mar 17 at 22:35
Wasn't The Sword of Damocles about a perpetual cliffhanger? – Henk Holterman Mar 17 at 22:45
3  
I wonder how many people go to www.argumentexception.com and are dissapointed to find no help. – Jon B Mar 17 at 22:59
show 1 more comment

5 Answers

vote up 44 vote down check

You shouldn't; I expect you have something like:

private static int foo;
public static int Foo {
    get {return foo;}
    set {Foo = value;} // spot the typo!!! (should be foo)
}

Essentially, the set is:

static void set_Foo(int value) {
    set_Foo(value);
}

so this is recursive, and will eventually consume up the stack (assuming no optimisations, etc).

It is impossible to diagnose more without a code sample.

link|flag
+1 stack overflows are usually recursion issues – Jeffrey Cameron Mar 17 at 22:19
Not that I've ever done anything like this . . . cough – Jim Mischel Mar 17 at 23:45
Could be that the static is set as the result of an event handler, and the event handler is set by setting the property (and more convoluted examples) Really need to see the code or the call stack to identify the issue – Rowland Shaw Mar 18 at 8:46
@Rowland - maybe, but static events are usually a bad idea anyway, since if you forget to unsubscribe your object can't be collected. Ever. – Marc Gravell Mar 18 at 9:42
Variation on the same theme is possible if you override an inherited property and forget the "base." prefix when setting. – Benjol Mar 20 at 8:13
show 5 more comments
vote up 1 vote down

I think I see a different interpretation of the question. Where the question isn't why the overflow happens, but why accessors can cause overflows. In this case, the accessor is a function call just like any other, and so it does consume stack space.

If you're using public members with no accessors, MyClass.myint doesn't become a function call, and can't overflow the stack.

link|flag
vote up 6 vote down

I'm guessing you're doing something like this:

public class MyClass
{
    public int TheInt
    {
    get
    {
    	return TheInt;
    }
    set
    {
    	TheInt = value; // assignment = recursion!
    }
}

The problem is, in the set function for TheInt, you're assigning a value to TheInt which will result in a nested call to the set function. You get recursion, and then a stack overflow.

link|flag
vote up 0 vote down

You want to know what's going on in the internals to cause the stack overflow?

Your method calls another method that results in infinite recursion: A calls A, stack overflow. A calls B, then B calls A, stack overflow. And so on.

As Marc Gravell suggested, it's likely theres a bug in your property implementation.

link|flag
vote up 5 vote down

Look at your call stack in the debugger (you do stop when exceptions are thrown, right?) This should give you a strong indication of what's going on.

link|flag
Thanks for the anonymous downvote. A rationale would be useful so that others can benefit as to why this doesn't answer the question? – Rowland Shaw Mar 18 at 8:44
Don't worry about it--a single downvote isn't that painful to your rep. – Mufasa Mar 20 at 14:08
I don't, but it does detract from the common knowledge -- if I'm talking rubbish, it's worth explaining how I'm talking rubbish – Rowland Shaw Mar 20 at 14:11

Your Answer

Get an OpenID
or

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