Hi all,
Static Methods :
static methods can access only static variables.It cannot access instance variables.
static methods can call another static methods without the objects.
static methods can call instance methods using the object of the class.
Instance Methods:
Instance methods can access static variables also instance variables.
Instacne methods can call another instance methods without the objects.
Can any one tell me is any other points are added for the static methods and instance methods in java.
Is the above statements are wrong please specify which statements are wrong.
Thank you,
With Regards,
Prem