Runtime Exception.
parent
84a56c9db9
commit
d0c56b4267
|
@ -42,9 +42,8 @@ public class Kartenstapel {
|
|||
}
|
||||
|
||||
public Karte getKarte(){
|
||||
if(kartenstapel.isEmpty()){
|
||||
System.out.println("Es sind keine Karten mehr im Kartenstapel übrig!");
|
||||
System.exit(0);}
|
||||
if(kartenstapel.isEmpty())
|
||||
throw new RuntimeException("Es sind keine Karten mehr im Kartenstapel übrig!");
|
||||
Karte randomKarte = kartenstapel.get((int)(Math.random()*kartenstapel.size()));
|
||||
kartenstapel.remove(randomKarte);
|
||||
return randomKarte;
|
||||
|
|
|
@ -6,7 +6,7 @@ import de.hs_mannheim.informatik.domain.Kartenstapel;
|
|||
public class BlackJackSpiel {
|
||||
|
||||
Kartenstapel ks;
|
||||
public Hand spieler;
|
||||
Hand spieler;
|
||||
|
||||
public BlackJackSpiel(){
|
||||
this.ks = new Kartenstapel();
|
||||
|
|
Loading…
Reference in New Issue