gpt4 book ai didi

python - 在dart/Flutter中是否有与python的global关键字等效的功能?

转载 作者:行者123 更新时间:2023-12-03 03:04:24 24 4
gpt4 key购买 nike

在python中,我们具有global关键字,该关键字使我们可以在函数中使用全局变量,如下所示:

test = "this is a test"

def change_test():
global test
test = "I've changed it"

change_test()
print(test) # should print (I've changed it) to the console.

在dart / flutter中相当于什么。我没有发现任何类似的东西。

最佳答案

在Flutter中称为static变量。例:

void main(){
print(Circle.pi);
}

class Circle{
static double pi = 3.1415;
}

这是一段解释Dart中静态变量的视频: https://www.youtube.com/watch?v=gmEVGdswpO0

关于python - 在dart/Flutter中是否有与python的global关键字等效的功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60896790/

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