首页 > 代码库 > 关于C#静态方法调用问题
关于C#静态方法调用问题
C# Code
public class TestClass
{
private static string Str = string.Empty;
public TestClass()
{
if (string.IsNullOrEmpty(Str))
{
Str = "TestStr";
}
}
public static string GetValue()
{
return Str;
}
}
//以上代码中Str是一个需要在程序初始化时根据实际情况赋值并作为静态属性存放于内存中,方便程序运行过程当中取值
当通过TestClass.GetValue()方法取值时,结果却不是"TestStr"而为"";通过调试追踪发现,public TestClass()根本没有被执行,这里还不能很好的理解其原因。
关于C#静态方法调用问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。