gpt4 book ai didi

c#:静态方法中的静态变量

转载 作者:IT王子 更新时间:2023-10-29 04:24:42 25 4
gpt4 key购买 nike

静态方法中可以有静态变量吗?此变量的值是否会在对该方法的所有调用中保留?

例如。

public static void MyMethod()
{
static int x = 0;
x++;
}

最佳答案

没有。

你不能有局部静态变量。

来自 MSDN :

C# does not support static local variables (variables that are declared in method scope).

here :

The static modifier can be used with classes, fields, methods, properties, operators, events, and constructors, but it cannot be used with indexers, destructors, or types other than classes.

如您所见,提及局部变量。


可以,但是使用静态字段:

public class MyClass
{
private static int MyVariable = 10;

public static void MyMethod()
{
MyVariable++;
}
}

关于c#:静态方法中的静态变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4525654/

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