I\'m still learning about methods in Java and was wondering how exactly you might use an instance method. I was thinking about something like this:
public vo
*An instance method * is a method is associated with objects, each instance method is called with a hidden argument that refers to the current object. for example on an instance method :
public void myMethod { // to do when call code }