Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.help > #1091
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!news.albasani.net!news.musoftware.de!wum.musoftware.de!newsfeed.kamp.net!newsfeed.kamp.net!feeder2.cambriumusenet.nl!feed.tweaknews.nl!209.197.12.242.MISMATCH!nx01.iad01.newshosting.com!newshosting.com!69.16.185.21.MISMATCH!npeer03.iad.highwinds-media.com!news.highwinds-media.com!feed-me.highwinds-media.com!postnews.google.com!l2g2000vbn.googlegroups.com!not-for-mail |
|---|---|
| From | Kathy Walker <kjata1013@gmail.com> |
| Newsgroups | comp.lang.java.help |
| Subject | <identifier> expected error |
| Date | Thu, 22 Sep 2011 16:40:54 -0700 (PDT) |
| Organization | http://groups.google.com |
| Lines | 25 |
| Message-ID | <c4db596b-eb82-4d41-bfd6-372b4037bfca@l2g2000vbn.googlegroups.com> (permalink) |
| NNTP-Posting-Host | 99.85.39.89 |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=ISO-8859-1 |
| X-Trace | posting.google.com 1316734856 18401 127.0.0.1 (22 Sep 2011 23:40:56 GMT) |
| X-Complaints-To | groups-abuse@google.com |
| NNTP-Posting-Date | Thu, 22 Sep 2011 23:40:56 +0000 (UTC) |
| Complaints-To | groups-abuse@google.com |
| Injection-Info | l2g2000vbn.googlegroups.com; posting-host=99.85.39.89; posting-account=JrhihgkAAACFF3WKpOun6H6qV8pfWSjZ |
| User-Agent | G2/1.0 |
| X-Google-Web-Client | true |
| X-Google-Header-Order | HUALESNKRC |
| X-HTTP-UserAgent | Mozilla/5.0 (Windows NT 6.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2,gzip(gfe) |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.java.help:1091 |
Show key headers only | View raw
Gah. I'm trying to call a method from one class to another. The TA's
are overloaded so I got no one, can anyone tell me what's wrong? I've
had one java class like a year ago. Kinda rusty. Thanks!
class NumArrayList implements NumList
{
double [] Numbers = new double[3];
public void main(String args[]){
Numbers[0] = 100000;
Numbers[1] = 20.9;
Numbers[2] = 3;
}
public void printArray(){
for(int i = 0; i<Numbers.length;i++)
System.out.print(Numbers[i] + " ");
}
}
----------------------------------------------------------------------------------------------------------------------------------------------------
public interface NumList {
printArray();
}
Back to comp.lang.java.help | Previous | Next — Next in thread | Find similar
<identifier> expected error Kathy Walker <kjata1013@gmail.com> - 2011-09-22 16:40 -0700
Re: <identifier> expected error "John B. Matthews" <nospam@nospam.invalid> - 2011-09-22 20:54 -0400
Re: <identifier> expected error Kathy Walker <kjata1013@gmail.com> - 2011-09-22 18:08 -0700
Re: <identifier> expected error "John B. Matthews" <nospam@nospam.invalid> - 2011-09-22 21:24 -0400
Re: <identifier> expected error Lew <lewbloch@gmail.com> - 2011-09-22 17:56 -0700
Re: <identifier> expected error Kathy Walker <kjata1013@gmail.com> - 2011-09-22 18:09 -0700
Re: <identifier> expected error Roedy Green <see_website@mindprod.com.invalid> - 2011-09-23 02:30 -0700
Re: <identifier> expected error Roedy Green <see_website@mindprod.com.invalid> - 2011-09-23 02:32 -0700
Re: <identifier> expected error Lew <lewbloch@gmail.com> - 2011-09-23 12:10 -0700
Re: <identifier> expected error Roedy Green <see_website@mindprod.com.invalid> - 2011-09-23 17:10 -0700
Re: <identifier> expected error Lew <lewbloch@gmail.com> - 2011-09-23 17:56 -0700
Re: <identifier> expected error Roedy Green <see_website@mindprod.com.invalid> - 2011-09-25 00:13 -0700
csiph-web