InterviewQuestion_C#_程序题_003
2021-09-17 12:12
标签:ogr 文件 技术 src png color bsp 结果 adk 分析代码,写出程序的输出结果: 文件:Program.cs 1 using System; 2 3 namespace Interview2 4 { 5 class A 6 { 7 public static int X; 8 static A() 9 { 10 X = B.Y + 1; 11 } 12 } 13 14 class B 15 { 16 public static int Y = A.X + 1; 17 static B() { } 18 static void Main() 19 { 20 Console.WriteLine("X ={0},Y ={1}",A.X,B.Y); 21 22 Console.ReadKey(); 23 } 24 } 25 26 } 输出结果: InterviewQuestion_C#_程序题_003标签:ogr 文件 技术 src png color bsp 结果 adk 原文地址:http://www.cnblogs.com/jswl/p/7420735.html
下一篇:JavaSE:反射机制的基本概念
文章标题:InterviewQuestion_C#_程序题_003
文章链接:http://soscw.com/essay/107910.html