Why do I have to assign a value to an int in C# when defaults to 0?(为什么我必须在默认为 0 时为 C# 中的 int 赋值?)
问题描述
这行得通:
class MyClass
{
int a;
public MyClass()
{
int b = a;
}
}
但这会导致编译器错误(使用未分配的局部变量'a'"):
But this gives a compiler error ("Use of unassigned local variable 'a'"):
class MyClass
{
public MyClass()
{
int a;
int b = a;
}
}
据我所知,这是因为在第一个示例中,从技术上讲,编译器不知道没有分配a".在后一个示例中,a"是在本地定义的,因此很容易跟踪.
As far as I can tell this happens because in the first example, technically, the compiler doesn't know that 'a' is not assigned. In the latter example, 'a' is defined locally, and therefore is easy to track.
但为什么后一个例子不起作用?
But why does the latter example not work?
整数不默认为 0 吗?这是编译器为最佳实践"而强制执行的.还是有其他原因?
Don't integers default to 0? Is this something the compiler enforces for "best practices". Or is there another reason?
推荐答案
在第一个示例中,它是一个字段.字段自动默认为 0/false/null.在第二个示例中,它是一个变量.变量不是默认的,在使用之前必须有明确的赋值".
In the first example it is a field. Fields automatically default to 0/false/null. In the second example it is a variable. Variables are not defaulted, and must have "definite assignment" before they are used.
本质上,在创建对象(或初始化结构)时,它会将内存归零(或者在非默认结构 ctor 的情况下,强制您手动初始化所有内容).但是,变量非常常见(在每种方法中),它不希望始终将堆栈归零的开销.相反,它会强制您指明初始值.
Essentially, when creating an object (or initializing a struct) it zeros the memory (or in the case of a non-default struct ctor, forces you to manually initialize everything). However, variables are so common (in every method) that it doesn't want the overhead of having to zero the stack all the time. It instead forces you to indicate the initial value.
这篇关于为什么我必须在默认为 0 时为 C# 中的 int 赋值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么我必须在默认为 0 时为 C# 中的 int 赋值?
基础教程推荐
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- MS Visual Studio .NET 的替代品 2022-01-01
- c# Math.Sqrt 实现 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01