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 > [Progetto] "CARTE" Thread Rating: 1 votes, 4.00 average.
Pages (27): « First ... « 2 3 4 5 [6] 7 8 9 10 » ... Last »   Last Thread   Next Thread
Author
Thread    Expand all | Contract all    Post New Thread    Post A Reply
Collapse
[>>>>VK<<<<]
.arcimaestro.

User info:
Registered: Jan 2005
Posts: 347 (0.05 al dì)
Location:
Corso:
Anno:
Time Online: 1 Day, 22:11:49 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

metodo get():

public int get(){

if (v==...)
return v;
else{
try { InvalidCardException e = new InvalidCardException();
throw e;
}catch(InvalidCardException e) {System.out.println("....");}
}
} -----> e mi da errore su questa parentesi.missing return statement

metodo toString:

public String toString(){
switch (v){
case 1:
return ...

default:
try {InvalidCardException e = new InvalidCardException();
throw e;
}catch(InvalidCardException e) {System.out.println(" ");}
}
} -----> e mi da errore su questa parentesi.missing return statement

__________________
Jessica Alba Italian Fans Site

31-01-2005 13:49
Click Here to See the Profile for [>>>>VK<<<<] Click here to Send [>>>>VK<<<<] a Private Message Find more posts by [>>>>VK<<<<] Add [>>>>VK<<<<] to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
dayfallen
.consigliere.

User info:
Registered: Sep 2004
Posts: 124 (0.02 al dì)
Location: Lausanne, Svizzera
Corso: Comunicazione Digitale
Anno: Terzo Anno - Fuori Corso
Time Online: 1 Day, 6:07:45 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by [&gt;&gt;&gt;&gt;VK&lt;&lt;&lt;&lt;]
metodo get():

public int get(){

if (v==...)
return v;
else{
try { InvalidCardException e = new InvalidCardException();
throw e;
}catch(InvalidCardException e) {System.out.println("....");}
}
} -----> e mi da errore su questa parentesi.missing return statement

metodo toString:

public String toString(){
switch (v){
case 1:
return ...

default:
try {InvalidCardException e = new InvalidCardException();
throw e;
}catch(InvalidCardException e) {System.out.println(" ");}
}
} -----> e mi da errore su questa parentesi.missing return statement

Ripeto... così non servono a niente quei try e cmq a parer mio non ci vogliono proprio i try... nel toString non è nemmeno richiesto di gestire eccezioni...;)

31-01-2005 13:53
Click Here to See the Profile for dayfallen Click Here to See the Blog of dayfallen Click here to Send dayfallen a Private Message Find more posts by dayfallen Add dayfallen to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
[>>>>VK<<<<]
.arcimaestro.

User info:
Registered: Jan 2005
Posts: 347 (0.05 al dì)
Location:
Corso:
Anno:
Time Online: 1 Day, 22:11:49 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by dayfallen
Ripeto... così non servono a niente quei try e cmq a parer mio non ci vogliono proprio i try... nel toString non è nemmeno richiesto di gestire eccezioni...;)


ma se i try nn servono, come faccio a fare uscire il messaggio il valore assegnato nn è corretto, lo definisco all'interno dell' errore.

31-01-2005 13:58
Click Here to See the Profile for [>>>>VK<<<<] Click here to Send [>>>>VK<<<<] a Private Message Find more posts by [>>>>VK<<<<] Add [>>>>VK<<<<] to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
[>>>>VK<<<<]
.arcimaestro.

User info:
Registered: Jan 2005
Posts: 347 (0.05 al dì)
Location:
Corso:
Anno:
Time Online: 1 Day, 22:11:49 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by [&gt;&gt;&gt;&gt;VK&lt;&lt;&lt;&lt;]
ma se i try nn servono, come faccio a fare uscire il messaggio il valore assegnato nn è corretto, lo definisco all'interno dell' errore.

anche togliendo il try l'erore nel toString rimane.

P.S

Me lo sento che è un errore del cxxxo, me lo sento:help: :help:

31-01-2005 14:01
Click Here to See the Profile for [>>>>VK<<<<] Click here to Send [>>>>VK<<<<] a Private Message Find more posts by [>>>>VK<<<<] Add [>>>>VK<<<<] to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
dayfallen
.consigliere.

User info:
Registered: Sep 2004
Posts: 124 (0.02 al dì)
Location: Lausanne, Svizzera
Corso: Comunicazione Digitale
Anno: Terzo Anno - Fuori Corso
Time Online: 1 Day, 6:07:45 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by [&gt;&gt;&gt;&gt;VK&lt;&lt;&lt;&lt;]
ma se i try nn servono, come faccio a fare uscire il messaggio il valore assegnato nn è corretto, lo definisco all'interno dell' errore.


get() non assegna nessun valore... e toString nemmeno... l'unico che potrebbe generare errori è il metodo set nel caso tu non gli passassi un valore valido ;)

31-01-2005 14:01
Click Here to See the Profile for dayfallen Click Here to See the Blog of dayfallen Click here to Send dayfallen a Private Message Find more posts by dayfallen Add dayfallen to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
[>>>>VK<<<<]
.arcimaestro.

User info:
Registered: Jan 2005
Posts: 347 (0.05 al dì)
Location:
Corso:
Anno:
Time Online: 1 Day, 22:11:49 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by dayfallen
get() non assegna nessun valore... e toString nemmeno... l'unico che potrebbe generare errori è il metodo set nel caso tu non gli passassi un valore valido ;)


public void set(int n){
if(n==...)
v=n;
else
try {InvalidCardException e = new InvalidCardException();
throw e;
}catch(InvalidCardException e) {System.out.println(" "}
}

invece questo me lo compila giusto :evil: :evil:

31-01-2005 14:03
Click Here to See the Profile for [>>>>VK<<<<] Click here to Send [>>>>VK<<<<] a Private Message Find more posts by [>>>>VK<<<<] Add [>>>>VK<<<<] to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
dayfallen
.consigliere.

User info:
Registered: Sep 2004
Posts: 124 (0.02 al dì)
Location: Lausanne, Svizzera
Corso: Comunicazione Digitale
Anno: Terzo Anno - Fuori Corso
Time Online: 1 Day, 6:07:45 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by [&gt;&gt;&gt;&gt;VK&lt;&lt;&lt;&lt;]
anche togliendo il try l'erore nel toString rimane.

P.S

Me lo sento che è un errore del cxxxo, me lo sento:help: :help:


nel toString avrai dimenticato di mettere i break; ad ogni case...

31-01-2005 14:04
Click Here to See the Profile for dayfallen Click Here to See the Blog of dayfallen Click here to Send dayfallen a Private Message Find more posts by dayfallen Add dayfallen to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
dayfallen
.consigliere.

User info:
Registered: Sep 2004
Posts: 124 (0.02 al dì)
Location: Lausanne, Svizzera
Corso: Comunicazione Digitale
Anno: Terzo Anno - Fuori Corso
Time Online: 1 Day, 6:07:45 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by [&gt;&gt;&gt;&gt;VK&lt;&lt;&lt;&lt;]
public void set(int n){
if(n==...)
v=n;
else
try {InvalidCardException e = new InvalidCardException();
throw e;
}catch(InvalidCardException e) {System.out.println(" "}
}

invece questo me lo compila giusto :evil: :evil:


Forse lo compila giusto ma non ti da un errore quando dovrebbe ;)

31-01-2005 14:04
Click Here to See the Profile for dayfallen Click Here to See the Blog of dayfallen Click here to Send dayfallen a Private Message Find more posts by dayfallen Add dayfallen to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
[>>>>VK<<<<]
.arcimaestro.

User info:
Registered: Jan 2005
Posts: 347 (0.05 al dì)
Location:
Corso:
Anno:
Time Online: 1 Day, 22:11:49 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

se metto break; mi da errore " unreachable statement"

__________________
Jessica Alba Italian Fans Site

31-01-2005 14:07
Click Here to See the Profile for [>>>>VK<<<<] Click here to Send [>>>>VK<<<<] a Private Message Find more posts by [>>>>VK<<<<] Add [>>>>VK<<<<] to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
yoruno
.grande:maestro.

User info:
Registered: Jul 2003
Posts: 10602 (1.35 al dì)
Location: Altrove
Corso: 404 error
Anno: 404 error
Time Online: 123 Days, 2:50:08: [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Intervento del moderatore:
E' vietato mandare codice di un elaborato in corso... ve lo dico come promemoria... :)

__________________
"Voi che tingete i mari del colore dello zinco, che tramutate i boschi in gialli deserti, i venti in fumi di polveri da sparo e che bruciate i cieli. Voi che volete ripetere i malvagi atti della sconsiderata Lilith, che fu la prima moglie di Adamo e poi la sposa del Diavolo. Voi che volete ripetere la ribellione scatenata da Lucifero, del mondo celeste il più splendente. Voi! Ascoltate l'afflizione della sottospecie alata che vola alta nel cielo." [Angel Sanctuary]
::: mail: yoruno@dsy.it ::: ::: My Site ::: ::: Dsy Photo Gallery ::: ::: DeviantART Gallery :::

31-01-2005 14:10
Click Here to See the Profile for yoruno Click Here to See the Blog of yoruno Click here to Send yoruno a Private Message Visit yoruno's homepage! Find more posts by yoruno Add yoruno to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
[>>>>VK<<<<]
.arcimaestro.

User info:
Registered: Jan 2005
Posts: 347 (0.05 al dì)
Location:
Corso:
Anno:
Time Online: 1 Day, 22:11:49 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by yoruno
Intervento del moderatore:
E' vietato mandare codice di un elaborato in corso...


ma sono censurati al punto giusto

31-01-2005 14:11
Click Here to See the Profile for [>>>>VK<<<<] Click here to Send [>>>>VK<<<<] a Private Message Find more posts by [>>>>VK<<<<] Add [>>>>VK<<<<] to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
dayfallen
.consigliere.

User info:
Registered: Sep 2004
Posts: 124 (0.02 al dì)
Location: Lausanne, Svizzera
Corso: Comunicazione Digitale
Anno: Terzo Anno - Fuori Corso
Time Online: 1 Day, 6:07:45 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by [&gt;&gt;&gt;&gt;VK&lt;&lt;&lt;&lt;]
se metto break; mi da errore " unreachable statement"

Non puoi mettere un break dopo un return... ;)
pensaci :)

31-01-2005 14:12
Click Here to See the Profile for dayfallen Click Here to See the Blog of dayfallen Click here to Send dayfallen a Private Message Find more posts by dayfallen Add dayfallen to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
dayfallen
.consigliere.

User info:
Registered: Sep 2004
Posts: 124 (0.02 al dì)
Location: Lausanne, Svizzera
Corso: Comunicazione Digitale
Anno: Terzo Anno - Fuori Corso
Time Online: 1 Day, 6:07:45 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by yoruno
Intervento del moderatore:
E' vietato mandare codice di un elaborato in corso... ve lo dico come promemoria... :)


I consigli come li sto dando io vanno bene? :oops:

31-01-2005 14:13
Click Here to See the Profile for dayfallen Click Here to See the Blog of dayfallen Click here to Send dayfallen a Private Message Find more posts by dayfallen Add dayfallen to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
[>>>>VK<<<<]
.arcimaestro.

User info:
Registered: Jan 2005
Posts: 347 (0.05 al dì)
Location:
Corso:
Anno:
Time Online: 1 Day, 22:11:49 [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Originally posted by dayfallen
Non puoi mettere un break dopo un return... ;)
pensaci :)

si ma se nn posso mettere return che ci devo mettere per avere la stringa?

31-01-2005 14:14
Click Here to See the Profile for [>>>>VK<<<<] Click here to Send [>>>>VK<<<<] a Private Message Find more posts by [>>>>VK<<<<] Add [>>>>VK<<<<] to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
Collapse
yoruno
.grande:maestro.

User info:
Registered: Jul 2003
Posts: 10602 (1.35 al dì)
Location: Altrove
Corso: 404 error
Anno: 404 error
Time Online: 123 Days, 2:50:08: [...]
Status: Offline

Post actions:

Edit | Report | IP: Logged

Intervento del moderatore:
Si, fino a quando siete col codice a pezzi è ok ;)

__________________
"Voi che tingete i mari del colore dello zinco, che tramutate i boschi in gialli deserti, i venti in fumi di polveri da sparo e che bruciate i cieli. Voi che volete ripetere i malvagi atti della sconsiderata Lilith, che fu la prima moglie di Adamo e poi la sposa del Diavolo. Voi che volete ripetere la ribellione scatenata da Lucifero, del mondo celeste il più splendente. Voi! Ascoltate l'afflizione della sottospecie alata che vola alta nel cielo." [Angel Sanctuary]
::: mail: yoruno@dsy.it ::: ::: My Site ::: ::: Dsy Photo Gallery ::: ::: DeviantART Gallery :::

31-01-2005 14:15
Click Here to See the Profile for yoruno Click Here to See the Blog of yoruno Click here to Send yoruno a Private Message Visit yoruno's homepage! Find more posts by yoruno Add yoruno to your buddy list Printer Friendly version Email this Article to a friend Reply w/Quote
All times are GMT. The time now is 12:24.    Post New Thread    Post A Reply
Pages (27): « First ... « 2 3 4 5 [6] 7 8 9 10 » ... Last »   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.047 seconds (81.11% PHP - 18.89% MySQL) con 26 query.