Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在不指定变量类型的情况下进行自动转换:
TypaA a = (TypeA) refA;
我不想写TypeA得很辛苦,而是想根据参考来推断refA。
TypeA
refA
在我看来,我认为我应该使用反射!
您可以自动转换为基类,因此如果 B 从 A 派生,您可以有 A a = someB;
显式类型转换告诉编译器“是的,我的意思是写这个”,静态类型是你的朋友。