gpt4 book ai didi

c# - 通过 void 函数重置变量

转载 作者:太空宇宙 更新时间:2023-11-03 17:07:26 24 4
gpt4 key购买 nike

static void Main(string[] args)
{
int test = 1;

resetTest();

Console.Write(test); // Should be 0
}

static void resetTest()
{
test = 0;
}

为什么不起作用?我怎么才能得到它? (我不想使用 int 函数并返回变量)现在我收到一条错误消息,指出变量 test 在函数 resetTest 上未定义。

最佳答案

因为测试是在您的 Main 方法的范围内定义的。

您需要将其移出该方法才能使其正常工作。

类似于:

static int test = 1; 

static void Main(string[] args)
{

resetTest();

Console.Write(test); // Should be 0
}

static void resetTest()
{
test = 0;
}

关于c# - 通过 void 函数重置变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7486744/

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