gpt4 book ai didi

dart - 静态常量 - 程序的顶层不允许静态常量 - Dart

转载 作者:行者123 更新时间:2023-12-05 00:28:35 30 4
gpt4 key购买 nike

我在 SO 上查看了其他一些类似的问题,但它们似乎没有具体解决以下问题。

我想要实现的是拥有无法更改的编译时常量。

我有一个程序,我对其进行了一些重组以消除困惑。该程序在“main()”之前有一些 const 声明。我将它们移到一个类中,但是它要求我将它们声明为“静态常量”。然后我想,好吧,“main()”之前的那些“const”声明可能也应该是“static const”。但是,当我尝试这样做时,编辑建议“不能将顶级声明声明为‘静态’”。例如。

static const int    I_CORRECT_YN       = 12;   // prompt nr.

所以,我有点困惑。我认为“const”是静态的。为什么我必须在类中声明“静态”?为什么我不能将“顶级”常量声明为“静态”?另外,有什么区别:
static const int I_CORRECT_YN = 12;
const int I_CORRECT_YN = 12;
static final int I_CORRECT_YN = 12;
final int I_CORRECT_YN = 12; ?

声明无法更改的编译时值的最佳或唯一方法是什么?

我想我正在看字面意思,但我认为有一个更复杂的含义。

最佳答案

Why do I have to declare "static" in the class?



因为实例变量/方法不能是 const .这意味着它们的值可能因实例而异,而编译时常量则不然。 (Source)

Why can't I declare a "top level" const as "static"?


static修饰符将变量/方法标记为类范围内的(类的每个实例都具有相同的值)。顶级内容是应用程序范围的,不属于任何类,因此将它们标记为类范围没有任何意义,也是不允许的。 (Source)

What is the best or only way to declare compile-time values that cannot be altered?



你已经在做 - 添加 static定义类常量时。定义顶级常量时不要添加它。另外,使用 const . final vars 不是编译时值。

What is the difference between [source code with different constant definitions omitted]


static constconst几乎相同,用法取决于上下文。 const的区别和 finalconst是编译时常量 - 它们只能使用字面值(或由运算符和字面值组成的表达式)初始化并且不能更改。 final变量初始化后也不能改变,但基本上都是普通变量。这意味着可以使用任何类型的表达式,并且每个类实例的值可以是不同的:

import "dart:math";

Random r = new Random();
int getFinalValue() {
return new Random().nextInt(100);
}

class Test {
// final variable per instance.
final int FOO = getFinalValue();
// final variable per class. "const" wouldn't work here, getFinalValue() is no literal
static final int BAR = getFinalValue();
}

// final top-level variable
final int BAZ = getFinalValue();
// again, this doesn't work, because static top-level elements don't make sense
// static final int WAT = getFinalValue();

void main() {
Test a = new Test();
print(Test.BAR);
print(BAZ); // different from Test.BAR
print(a.FOO);
a = new Test();
print(Test.BAR); // same as before
print(BAZ); // same as before
print(a.FOO); // not the same as before, because it is another instance,
// initialized with another value
// but this would still be a syntax error, because the variable is final.
// a.FOO = 42;
}

我希望这会有所帮助,并且我没有描述它太困惑。 :]

关于dart - 静态常量 - 程序的顶层不允许静态常量 - Dart,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18760485/

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