How to initialize var?(如何初始化变量?)
问题描述
我可以用 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.
这篇关于如何初始化变量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何初始化变量?


基础教程推荐
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30