• <tfoot id='ucrab'></tfoot>
    <i id='ucrab'><tr id='ucrab'><dt id='ucrab'><q id='ucrab'><span id='ucrab'><b id='ucrab'><form id='ucrab'><ins id='ucrab'></ins><ul id='ucrab'></ul><sub id='ucrab'></sub></form><legend id='ucrab'></legend><bdo id='ucrab'><pre id='ucrab'><center id='ucrab'></center></pre></bdo></b><th id='ucrab'></th></span></q></dt></tr></i><div id='ucrab'><tfoot id='ucrab'></tfoot><dl id='ucrab'><fieldset id='ucrab'></fieldset></dl></div>

    1. <legend id='ucrab'><style id='ucrab'><dir id='ucrab'><q id='ucrab'></q></dir></style></legend>
        <bdo id='ucrab'></bdo><ul id='ucrab'></ul>

      1. <small id='ucrab'></small><noframes id='ucrab'>

        如何初始化变量?

        How to initialize var?(如何初始化变量?)

      2. <tfoot id='6pkUB'></tfoot>

      3. <i id='6pkUB'><tr id='6pkUB'><dt id='6pkUB'><q id='6pkUB'><span id='6pkUB'><b id='6pkUB'><form id='6pkUB'><ins id='6pkUB'></ins><ul id='6pkUB'></ul><sub id='6pkUB'></sub></form><legend id='6pkUB'></legend><bdo id='6pkUB'><pre id='6pkUB'><center id='6pkUB'></center></pre></bdo></b><th id='6pkUB'></th></span></q></dt></tr></i><div id='6pkUB'><tfoot id='6pkUB'></tfoot><dl id='6pkUB'><fieldset id='6pkUB'></fieldset></dl></div>
        1. <legend id='6pkUB'><style id='6pkUB'><dir id='6pkUB'><q id='6pkUB'></q></dir></style></legend>
                <bdo id='6pkUB'></bdo><ul id='6pkUB'></ul>

                <small id='6pkUB'></small><noframes id='6pkUB'>

                    <tbody id='6pkUB'></tbody>
                • 本文介绍了如何初始化变量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我可以用 null 或一些空值初始化 var 吗?

                  Can I initialize var with null or some empty value?

                  推荐答案

                  C# 是一种严格/强类型语言.var 是为 匿名类型 的编译时类型绑定引入的,但你可以将 var 用于设计时已知的原始和自定义类型.在运行时,没有什么像 var,它被一个实际的类型所取代,它要么是引用类型,要么是值类型.

                  C# is a strictly/strongly typed language. var was introduced for compile-time type-binding for anonymous types yet you can use var for primitive and custom types that are already known at design time. At runtime there's nothing like var, it is replaced by an actual type that is either a reference type or value type.

                  当你说,

                  var x = null; 
                  

                  编译器无法解决这个问题,因为没有类型绑定到 null.你可以这样弄.

                  the compiler cannot resolve this because there's no type bound to null. You can make it like this.

                  string y = null;
                  var x = y;
                  

                  这会起作用,因为现在 x 可以在编译时知道它的类型,在这种情况下是字符串.

                  This will work because now x can know its type at compile time that is string in this case.

                  这篇关于如何初始化变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)
                  Parameter count mismatch with Invoke?(参数计数与调用不匹配?)
                  How to store delegates in a List(如何将代表存储在列表中)
                  How delegates work (in the background)?(代表如何工作(在后台)?)
                  C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)
                  Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)
                  • <bdo id='uBTIe'></bdo><ul id='uBTIe'></ul>
                  • <i id='uBTIe'><tr id='uBTIe'><dt id='uBTIe'><q id='uBTIe'><span id='uBTIe'><b id='uBTIe'><form id='uBTIe'><ins id='uBTIe'></ins><ul id='uBTIe'></ul><sub id='uBTIe'></sub></form><legend id='uBTIe'></legend><bdo id='uBTIe'><pre id='uBTIe'><center id='uBTIe'></center></pre></bdo></b><th id='uBTIe'></th></span></q></dt></tr></i><div id='uBTIe'><tfoot id='uBTIe'></tfoot><dl id='uBTIe'><fieldset id='uBTIe'></fieldset></dl></div>

                    <small id='uBTIe'></small><noframes id='uBTIe'>

                      1. <tfoot id='uBTIe'></tfoot>
                        <legend id='uBTIe'><style id='uBTIe'><dir id='uBTIe'><q id='uBTIe'></q></dir></style></legend>

                            <tbody id='uBTIe'></tbody>