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.
将类名作为命令行参数传递。
$program-name class-name
如何在 Scala 中从此类实例化一个对象?换句话说,是否可以从类名中获取对象?
是的,有可能。例如:
Class.forName("java.lang.String").newInstance
由于您可以在 scala 中调用所有 java 方法,因此您可以调用Class.forName(classname).
Class.forName(classname)