+ 1
How to call the static method
2 Réponses
+ 1
using class..
eg:
if show(); is a static method of draw class.
then to call show() u shd type
draw.show();
+ 1
you don't need to create object to call static method you can call that method by using class name in which that static method lying and method name
classname (.)method name