var的特异性是什么?其上的MSDN reference声明如下:
An implicitly typed local variable is strongly typed just as if you had declared the type yourself
Bur似乎没有说任何类型的强类型.例如,如果我有以下内容:
var x = new Tree();
但是我接下来不调用Tree的任何方法,x仍然强烈地键入树?或者我可以拥有以下内容吗?
var x = new Tree();x = new Object();
我猜这是不允许的,但我现在无法访问编译器,我真的想知道是否有任何警告允许出现如上所述的意外行为.
解决方法 它强烈地键入右侧表达式的类型:The var keyword instructs the compiler to infer the type of the variable from the Expression on the right sIDe of the initialization statement.
从here起.
总结以上是内存溢出为你收集整理的c# – var的特异性是什么?全部内容,希望文章能够帮你解决c# – var的特异性是什么?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)