GetType()
非强类型,支持跨程序集发射,用来支持动态引用,
A obja=new A(); Type t=obja.GetType()
typeof()
强类型,静态的
Type t=typeof(A)