























请详细解释下面的代码
(如果能编译通过,请描述输出结果;
如果无法编译通过,请解释原因)
using System;
namespace param
{
class Class1
{
static int k;
[STAThread]
static void Main(string[] args)
{
int i;
int j = 1;
Console.WriteLine(j);
Console.WriteLine(k);
Console.WriteLine(i);
}
}
}
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。