I have use case, where I have two static functions in two different classes. Now I want to call one of this functions dynamically.
I know how to create instance of class dynamically (by class.forName()), But since I'm dealing with static functions I don't need to create an instance, So is there any way I can call this static functions dynamically ?