class Program
2 {
3 static void Main(string[] args)
4 {
5 TestClass2 tc2 = new TestClass2();
6 TestClass tc = new TestClass2();
7
8 Console.WriteLine(tc2.GetType().ToString());
9 Console.WriteLine(tc.GetType().ToString());
10 }
11 }
12
13 class TestClass
14 {
15 //some code
16 }
17
18 class TestClass2:TestClass
19 {
20 //some code
21 }
各位大虾请看上面的代码,小弟想问的是第5、6行实例化后的TestClass2的两个对象tc和tc2有什么区别,输出的类型都是TestClass2,常用哪一种?
拉风的咖菲猫
狐的传说