Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
car t = new car();
t.start();
CarCrash(String titel) {
super(titel);
//Fensterkomponenten
setLayout(null);
bildanzeige = new Bildleinwand();
bildanzeige.setBounds(0,0,960,544);
JButton button1 = new JButton("Neues Spiel");
button1.setBounds(960,200,140,30);
JButton button2 = new JButton("Pause");
button2.setBounds(960,235,140,30);
JButton button3 = new JButton("Fortsetzen");
button3.setBounds(960,270,140,30);
JButton button4 = new JButton("Beenden");
button4.setBounds(960,305,140,30);
JLabel label1 = new JLabel("Punkte: "+points);
label1.setBounds(965,0,140,30);
add(bildanzeige);
add(button1);
add(button2);
add(button3);
add(button4);
add(label1);
car t = new car();
t.start();
usw....
car t = new car(label1);
t.start();
Wenn ich es so mache wie du würdest wird es nicht kompiliert.
Mache ich es aber so:
Java:car t = new car(label1); t.start();