Hi,
Why is static virtual impossible? Is C# dependent or just don't have any sense in the OO world?
I know the concept has already been underlined but I did not find a simple answer to the previous question.
Thx
|
3
|
|||||||
|
|
|
How do you propose to do both in the same method? |
||||||||
|
|
|
I'm going to be the one who naysays. What you are describing is not technically part of the language. Sorry. But it is possible to simulate it within the language. Let's consider what you're asking for - you want a collection of methods that aren't attached to any particular object that can all be easily callable and replaceable at run time or compile time. To me that sounds like what you really want is a singleton object with delegated methods. Let's put together an example:
in use:
Given all this, we now have a singleton class that writes out currency values and I can change the behavior of it. I've basically defined the behavior convention at compile time and can now change the behavior at either compile time (in the constructor) or run time, which is, I believe the effect you're trying to get. If you want inheritance of behavior, you can do that to by implementing back chaining (ie, have the new method call the previous one). That said, I don't especially recommend the example code above. For one, it isn't thread safe and there really isn't a lot in place to keep life sane. Global dependence on this kind of structure means global instability. This is one of the many ways that changeable behavior was implemented in the dim dark days of C: structs of function pointers, and in this case a single global struct. |
||
|
|
|
|
While technically its not possible to define a static virtual method, for all the reasons already pointed out here, you can functionally accomplish what I think your trying using C# extension methods. From MSDN:
Check out C# Extension Methods (C# Programming Guide) for more details. |
||
|
|
|
|
Eric Lippert has a blog post about this, and as usual with his posts, he covers the subject in great depth:
|
||
|
|
|
|
In .NET, virtual method dispatch is (roughly) done by looking at the actual type of an object when the method is called at runtime, and finding the most overriding method from the class's vtable. When calling on a static class, there is no object instance to check, and so no vtable to do the lookup on. |
||
|
|
|
|
Changes are, if you think you need virtual static methods, you likely need to change how you are looking at the problem. What problem are you trying to solve with virtual static methods? |
||
|
|