If suppose i have a class name as a string, how can i use reflection to invoke its static member known before-hand? Some like this:
someInspectionMechanism("FooClass").staticMethod()
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
locals()orglobals()to get the namespace dictionary, and look for a class with the name you want. The fact that you’re using a static method is not relevant.Example: