| Author |
Need Help with methods
|
Jere Johnson
Greenhorn
Joined: Mar 29, 2003
Posts: 28
|
|
Im getting an error when i call methods i created in another java file. How do i get this file to associate with the other java file that i created my methods in? thanks for your help. Here is code [ October 28, 2003: Message edited by: Jere Johnson ] [ October 28, 2003: Message edited by: Jere Johnson ]
|
Diapers are the best invention
|
 |
William Barnes
Ranch Hand
Joined: Mar 16, 2001
Posts: 965
|
|
What does "/*public" match up with? Please post errors. Normally if you have the other class in the same directory and compile all the files in that directory - java is able to find methods in other classes. (Assuming that the methods are "public" and stuff like that.)
|
Please ignore post, I have no idea what I am talking about.
|
 |
Dave Vick
Ranch Hand
Joined: May 10, 2001
Posts: 3244
|
|
Jere You don't have an object associated with the method being called so the ompiler is looking for the isCurrent method in the class it is called from. If the isCurrent method is defined in another class you need an instance of that class to call it on. Like this: otherClassInstance.isCurrent() hope that helps
|
Dave
|
 |
 |
|
|
subject: Need Help with methods
|
|
|