class A { public static int X; static A() { X = B.Y + 1; } } class B { public static int Y ; static B() { Y = A.X + 1; } static void Main() { Console.WriteLine("x={0},y={1}",A.X,B.Y); Console.ReadKey(); } } |
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) | 黑马程序员IT技术论坛 X3.2 |