Created
November 3, 2018 03:16
-
-
Save inmyth/b20b2ee686a4a05403900a7b07bfb978 to your computer and use it in GitHub Desktop.
Dynamic instantiation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| val o = Class.forName("me.mbcu.dapackage.TwoStringConstructorClass").getConstructors()(0) | |
| val args = Array[AnyRef]("aaaa", "bbbb") | |
| val c = o.newInstance(args:_*).asInstanceOf[ParentAbstractClass] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment