Created
October 22, 2022 10:39
-
-
Save OMGZui/f7ca2fedd7b2ed0e1ef4a7b3820fe235 to your computer and use it in GitHub Desktop.
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
ReflectDemo reflectDemo = new ReflectDemo(); | |
(1)Class<ReflectDemo> reflectDemoClass = ReflectDemo.class; | |
(2)Class<?> aClass = Class.forName ("com.omgzui.springtransaction.transactiondemo.reflectdemo.ReflectDemo"); | |
(3)Class<? extends Class> aClass = reflectDemoClass.getClass (); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment