Forum: Java May 26th, 2004 |
| Replies: 5 Views: 14,469 Review the following
CLASS I (Partical)
.
.
.
public String climateDataOut[];
try |
Forum: Java May 26th, 2004 |
| Replies: 5 Views: 14,469 you need to change your climaticData method to return String[] instead of void. Add return(climateDataOut); at the end of the method and then change your calling class to catch the String[]. |