gpt4 book ai didi

.net - 为什么在静态方法中可以使用 const 变量?

转载 作者:行者123 更新时间:2023-12-04 13:09:05 26 4
gpt4 key购买 nike

我一直在编写代码而没有意识到为什么我可以在静态中访问常量值
方法。

为什么可以访问const值而不将其声明为 static ?

例如)调用 IMAGE_FILE_EXTENSION 是合法的在 AddImageToDocument(...)

public abstract class ImageDocumentReplacer : DocumentReplacer
{
private const string IMAGE_FILE_EXTENSION = ".tif";

private static void AddImageToDocument(int documentId, string separatedPath)
{
Console.WriteLine(IMAGE_FILE_EXTENSION);
}
}

最佳答案

const成员隐含 static .它们属于类而不是特定实例。因此,您不能使用 this.myConstant但是 MyClass.myConstant .

引用 C# 3.0 规范(第 10.4 节常量):

Even though constants are considered static members, a constant-declaration neither requires nor allows a static modifier. It is an error for the same modifier to appear multiple times in a constant declaration.

关于.net - 为什么在静态方法中可以使用 const 变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1261199/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com