Does the new 'dynamic' C# 4.0 keyword deprecate the 'var' keyword?

喜你入骨 提交于 2019-12-03 06:42:08

问题


When C# 4.0 comes out and we have the dynamic keyword as described in this excellent presentation by Anders Hejlsberg, (C# is evolving faster than I can keep up.. I didn't have much time to acquaint myself with the var keyword)

Would I still need the var keyword ? Is there anything that var can do.. that dynamic can't?

var x = SomeFunctionThatIKnowReturnsSomeKindOfList();
// do something with x

dynamic x = SomeFunctionThatIKnowReturnsSomeKindOfList();
// do something with x

回答1:


No, they're very different.

var means "infer the type of the variable at compile-time" - but it's still entirely statically bound.

dynamic means "assume I can do anything I want with this variable" - i.e. the compiler doesn't know what operations are available, and the DLR will work out what the calls really mean at execution time.

I expect to use dynamic very rarely - only when I truly want dynamic behaviour:

  • var lets you catch typos etc at compile-time
  • statically bound code is always going to run faster than dynamically bound code (even if the difference becomes reasonably small)
  • statically bound code gives more compile-time support beyond just errors: you can find call hierarchies, refactoring will work better, Intellisense is available etc



回答2:


Dynamic and var represent two completely different ideas.

var

Var essentially asks the compiler to figure out the type of the variable based on the expression on the right hand side of the assignment statement. The variable is then treated exactly as if it were explicitly declared as the type of the expression. For example the following two statements are equivalent

var a = "foo";
string a = "foo";

The key to take away here is that "var" is 100% type safe and is a compile time operation

dynamic

Dynamic is in many ways the exact opposite of var. Using dynamic is essentially eliminating all type safety for thet particular variable. It many ways it has no type. When you call a method or field on the variable, the determination on how to invoke that field occurs at runtime. For example

dynamic d = SomeOperation();
d.Foo(); // Will this fail or not?  Won't know until you run the program

The key to take away here is that "dynamic" is not type safe and is a runtime operation




回答3:


Yes you will still need var:

Var is a variable whose type will be inferred by the compiler.
dynamic will have its type assigned at runtime

So:

Var i = "Hello World"

will have its type inferred as a string type in doing so intellisence will give you all the methods that string can use like,

i.Split("/")

Where as:

dynamic i = "Hello World"

won't have its type inferred untill runtime because the complier dosn't know what type it is yet, but will still let you do:

i.Split("/")

but when it calls the method that you need it may fail because the type is wrong and the method isn't there.



来源:https://stackoverflow.com/questions/298277/does-the-new-dynamic-c-sharp-4-0-keyword-deprecate-the-var-keyword

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!