After reading many of the replies to this thread, I see that many of those who dislike it cite the potential for abuse of the new keyword. My question is, what sort of abuse? How could this be abused so badly as to make people vehemently dislike it? Is it just about purism? Or is there a real pitfall that I'm just not seeing?
|
feedback
|
|
Some see it as a tool that will be abused. Like "Option Strict Off" and "On Error Resume Next" in VB which "pure" languages like C# and Java have never had. Many said the same about the "var" keyword, yet I don't see it being abused, once it became understood that it wasn't the same as VB's "Variant" It could be abused in places that lazy developers don't want type checking on classes and just try catch dynamic calls instead of writing "if blah is Blah ...". I personally feel it could be used properly in situations like this recent question that I answered. I think the ones really understanding it's power are those heavily into the dynamic .NET languages. | |||||||||||||||||||
feedback
|
|
I think that a lot of the revulsion that people are expressing to this feature boils down to "this is a bad language feature because it will allow bad developers to write bad code." If you think about it, by that logic all language features are bad. When I run into a block of VB code that some genius has prefixed with Me, I'm looking forward to a more useful way of interoperating between C# and Python. I'm writing more and more code that does this. The | |||
|
feedback
|
|
The real pitfall? Severe lack of documentation. The entire application's architecture exists in the mind of the person (or persons) who wrote it. At least with strong-typing, you can go see what the object does via its class definition. With dynamic-typing, you must infer the meaning from it's use, at best. At worst, you have NO IDEA what the object is. It's like programming everything in JavaScript. ACK! | |||||||||
feedback
|
|
dynamic is bad because code like this will pop all over the place:
instead of:
The first one, has no static type info, no compile time checking, it's not self documenting, no type inference so people will be forced to use a dynamic reference at the call site to store the result, leading to more type loss, and all this spirals down. I'm already starting to fear dynamic. Edit: The danger has passed (Phew!) ... and dynamic wasn't been abused after all, no need to down vote me after 3 years :) | |||||
feedback
|
|
When people realize that they don't get good IntelliSense with The purposes of Good times will be had by all. (Unless you need to maintain code someone else wrote.) | |||||||||
feedback
|
|
This is sort of like discussing public cameras, sure they can and will be misused but there are benefits to having them as well. There is no reason why you couldn't outlaw the "dynamic" keyword in your own coding guideline if you don't need them. So whats the problem? I mean, if you want to do crazy things with the "dynamic" keyword and pretend C# is the some mutant cousin of JavaScript, be my guest. Just keep these experiments out of my codebase. ;) | |||
|
feedback
|
|
FUD. It might be the best thing since sliced bread, but all the experience I've had with VB, JavaScript, etc., brings me the chills to know that C# will have dynamic binding. I know I will be able to look at it rationally in the near future and see how good that new feature will be to enable interoperability with dynamic languages. But it will take some time. I'm human, ok? :-) | |||
|
feedback
|
|
I don't see a reason why the current way of invoking methods dynamicly is flawed: It takes three lines to do it, or you can add a extension method on System.Object to do it for you:
| |||||||||
feedback
|