Dsy Network www | forum | my | didattica | howto | wiki | el goog | stats | blog | dona | rappresentanti
Homepage
 Register   Calendar   Members  Faq   Search  Logout 
.dsy:it. : Powered by vBulletin version 2.3.1 .dsy:it. > Didattica > Corsi A - F > Fondamenti di architettura e programmazione > [HELP] Java
Pages (4): « 1 2 3 [4]   Last Thread   Next Thread
Author
Thread    Expand all | Contract all    Post New Thread    Post A Reply
Collapse
GrandeMago
.fedelissimo.

User info:
Registered: Nov 2005
Posts: 47 (0.01 al dì)
Location: Milano
Corso: Comunicazione Digitale
Anno: Terzo
Time Online: 1 Day, 1:26:51 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Ho risolto però adesso mi da quest'errore!:?

/tmp/submissionNzPF2S/Istruzione.java:6: expected
public static Hashtable memoria = new Hashtable();
^
1 errorOra cliccate qui per tornare alla pagina precedente.

12-02-2006 13:24
Click Here to See the Profile for GrandeMago Click here to Send GrandeMago a Private Message Find more posts by GrandeMago Add GrandeMago to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Vikyg13
.arcimaestro.

User info:
Registered: Feb 2006
Posts: 290 (0.04 al dì)
Location:
Corso: Comunicazione Digitale
Anno: Primo
Time Online: 3 Days, 1:12:06: [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

sn errori di cast, ricorda che semmai è Integer(0) perkè il costruttore di Integer vuole un int.
Non puoi convertire un Integer in int con un cast ma usa il metodo intValue()
Nella hashtable devi mettere un Strind ed un Integer

Per gli errori delle eccezioni nn saprei, inoltre nel costruttore che hai messo nel clone() di assegna il secondo valore deve essere un int, mentre "valore" è integer, quindi trasformalo usando il metodo che ti ho detto

Spero di esserti stato di aiuto

Domanda: Come installo la versione java 1.4??In che sito posso prendere il file di installazione?

12-02-2006 13:27
Click Here to See the Profile for Vikyg13 Click here to Send Vikyg13 a Private Message Find more posts by Vikyg13 Add Vikyg13 to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Joda
.grande:maestro.

User info:
Registered: Mar 2003
Posts: 1126 (0.14 al dì)
Location: Milano
Corso: Dottore in Informatica
Anno: Primo TICOM
Time Online: 9 Days, 23:17:40 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by Vikyg13

Domanda: Come installo la versione java 1.4??In che sito posso prendere il file di installazione?


Java 1.4 la puoi scaricare dal sito della sun se vuoi J2SE 1.4

per l'installazione, dato che devi sviluppare, ti serve SDK e non il JRE...

__________________
Homepage personale (English version)
c/o segreteria didattica via comelico

12-02-2006 13:47
Click Here to See the Profile for Joda Click Here to See the Blog of Joda Click here to Send Joda a Private Message Visit Joda's homepage! Find more posts by Joda Add Joda to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
GrandeMago
.fedelissimo.

User info:
Registered: Nov 2005
Posts: 47 (0.01 al dì)
Location: Milano
Corso: Comunicazione Digitale
Anno: Terzo
Time Online: 1 Day, 1:26:51 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Grazie ho risolto, solo che ora mi dà quest'errore in Incrementa e Decrementa! riguarda sempre la hashtable, no?!...ora vedo se riesco a risolvere:?...

/tmp/submissioniLnpfw/Decrementa.java:16: cannot resolve symbol
symbol : method put (java.lang.String,int)
location: class java.util.Hashtable
memoria.put(variabile, (((Integer)memoria.get(variabile)).intValue()) - decremento);
^
/tmp/submissioniLnpfw/Incrementa.java:17: cannot resolve symbol
symbol : method put (java.lang.String,int)
location: class java.util.Hashtable
memoria.put(variabile, (((Integer)memoria.get(variabile)).intValue()) + incremento);
^
2 errors

12-02-2006 14:01
Click Here to See the Profile for GrandeMago Click here to Send GrandeMago a Private Message Find more posts by GrandeMago Add GrandeMago to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Vikyg13
.arcimaestro.

User info:
Registered: Feb 2006
Posts: 290 (0.04 al dì)
Location:
Corso: Comunicazione Digitale
Anno: Primo
Time Online: 3 Days, 1:12:06: [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Ok grazie!

12-02-2006 14:02
Click Here to See the Profile for Vikyg13 Click here to Send Vikyg13 a Private Message Find more posts by Vikyg13 Add Vikyg13 to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Joda
.grande:maestro.

User info:
Registered: Mar 2003
Posts: 1126 (0.14 al dì)
Location: Milano
Corso: Dottore in Informatica
Anno: Primo TICOM
Time Online: 9 Days, 23:17:40 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by GrandeMago
Grazie ho risolto, solo che ora mi dà quest'errore in Incrementa e Decrementa! riguarda sempre la hashtable, no?!...ora vedo se riesco a risolvere:?...

/tmp/submissioniLnpfw/Decrementa.java:16: cannot resolve symbol
symbol : method put (java.lang.String,int)
location: class java.util.Hashtable
memoria.put(variabile, (((Integer)memoria.get(variabile)).intValue()) - decremento);
^
/tmp/submissioniLnpfw/Incrementa.java:17: cannot resolve symbol
symbol : method put (java.lang.String,int)
location: class java.util.Hashtable
memoria.put(variabile, (((Integer)memoria.get(variabile)).intValue()) + incremento);
^
2 errors


si sembra che memoria non sia dichiarata come hashtable dato che ti dice "cannot resolve symbol
symbol : method put (java.lang.String,int)" oppure che cerchi di usare il metodo put con parametri non validi.

__________________
Homepage personale (English version)
c/o segreteria didattica via comelico

12-02-2006 14:06
Click Here to See the Profile for Joda Click Here to See the Blog of Joda Click here to Send Joda a Private Message Visit Joda's homepage! Find more posts by Joda Add Joda to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
GrandeMago
.fedelissimo.

User info:
Registered: Nov 2005
Posts: 47 (0.01 al dì)
Location: Milano
Corso: Comunicazione Digitale
Anno: Terzo
Time Online: 1 Day, 1:26:51 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

credo più la seconda perchè la hashtable l'ho dichiarata

public static Hashtable memoria = new Hashtable(), è giusto così, no?!

ora vedo il put nella doc java.

grazie joda

12-02-2006 14:10
Click Here to See the Profile for GrandeMago Click here to Send GrandeMago a Private Message Find more posts by GrandeMago Add GrandeMago to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
GrandeMago
.fedelissimo.

User info:
Registered: Nov 2005
Posts: 47 (0.01 al dì)
Location: Milano
Corso: Comunicazione Digitale
Anno: Terzo
Time Online: 1 Day, 1:26:51 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Sottoposizione riuscita!:D
però domanda: errore grave se in output mi da Primo argomento invalido invece di questa benedetta somma?!

12-02-2006 14:21
Click Here to See the Profile for GrandeMago Click here to Send GrandeMago a Private Message Find more posts by GrandeMago Add GrandeMago to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Joda
.grande:maestro.

User info:
Registered: Mar 2003
Posts: 1126 (0.14 al dì)
Location: Milano
Corso: Dottore in Informatica
Anno: Primo TICOM
Time Online: 9 Days, 23:17:40 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by GrandeMago
Sottoposizione riuscita!:D
però domanda: errore grave se in output mi da Primo argomento invalido invece di questa benedetta somma?!


:pensa: beh non penso che sia bello :pensa: :D

__________________
Homepage personale (English version)
c/o segreteria didattica via comelico

12-02-2006 14:25
Click Here to See the Profile for Joda Click Here to See the Blog of Joda Click here to Send Joda a Private Message Visit Joda's homepage! Find more posts by Joda Add Joda to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
GrandeMago
.fedelissimo.

User info:
Registered: Nov 2005
Posts: 47 (0.01 al dì)
Location: Milano
Corso: Comunicazione Digitale
Anno: Terzo
Time Online: 1 Day, 1:26:51 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

sono due giorni che mi ci rompo e non ho trovato il cavolo di errore!:evil:

12-02-2006 14:32
Click Here to See the Profile for GrandeMago Click here to Send GrandeMago a Private Message Find more posts by GrandeMago Add GrandeMago to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Brk
.consigliere.

User info:
Registered: Dec 2004
Posts: 148 (0.02 al dì)
Location:
Corso:
Anno:
Time Online: 1 Day, 8:25:11 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Me ne son reso conto ora e non riesco a correggere, nessuno può darmi una mano in pm?

13-02-2006 16:00
Click Here to See the Profile for Brk Click here to Send Brk a Private Message Find more posts by Brk Add Brk to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
cia
Mago Ninja

User info:
Registered: Apr 2003
Posts: 1023 (0.13 al dì)
Location: cpd
Corso: Comunicazione Digitale
Anno: 3 (teoricamente...)
Time Online: 13 Days, 17:33:10 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

a me dà questo errore

error: cannot read: /tmp/submissionBXsJo9/*.java
1 error



????????????


edit: risolto, zip con solo i file, senza la cartella:D

__________________
But until we unite
I live for that night
Wait for time
two souls entwine

Last edited by cia on 13-02-2006 at 17:32

13-02-2006 17:24
Click Here to See the Profile for cia Click here to Send cia a Private Message Find more posts by cia Add cia to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Skioda86
.precettore.

User info:
Registered: Jun 2005
Posts: 90 (0.01 al dì)
Location: Borno (BS)
Corso: Comunicazione Digitale
Anno: 1
Time Online: 21:00:29 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

cia

a me dà questo errore

error: cannot read: /tmp/submissionBXsJo9/*.java
1 error



????????????



Non devi metterli in una cartella i files .java!!
Devi prenderli e zipparli senza inserirli da nessuna parte!

__________________
- - {[( KEVIN HIGHT FLY)]} - -

13-02-2006 18:36
Click Here to See the Profile for Skioda86 Click here to Send Skioda86 a Private Message Visit Skioda86's homepage! Find more posts by Skioda86 Add Skioda86 to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
Joda
.grande:maestro.

User info:
Registered: Mar 2003
Posts: 1126 (0.14 al dì)
Location: Milano
Corso: Dottore in Informatica
Anno: Primo TICOM
Time Online: 9 Days, 23:17:40 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by Skioda86
Non devi metterli in una cartella i files .java!!
Devi prenderli e zipparli senza inserirli da nessuna parte!


skioda dipende se avete strutturato il progetto in package.

__________________
Homepage personale (English version)
c/o segreteria didattica via comelico

13-02-2006 18:39
Click Here to See the Profile for Joda Click Here to See the Blog of Joda Click here to Send Joda a Private Message Visit Joda's homepage! Find more posts by Joda Add Joda to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
All times are GMT. The time now is 21:21.    Post New Thread    Post A Reply
Pages (4): « 1 2 3 [4]   Last Thread   Next Thread
Show Printable Version | Email this Page | Subscribe to this Thread | Add to Bookmarks

Forum Jump:
Rate This Thread:

Forum Rules:
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is OFF
vB code is ON
Smilies are ON
[IMG] code is ON
 

Powered by: vBulletin v2.3.1 - Copyright ©2000 - 2002, Jelsoft Enterprises Limited
Mantained by dsy crew (email) | Collabora con noi | Segnalaci un bug | Archive | Regolamento | Licenze | Thanks | Syndacate
Pagina generata in 0.099 seconds (85.66% PHP - 14.34% MySQL) con 26 query.