tailieunhanh - Lập trình Java cơ bản : Các thành phần GUI part 5

Nói Java compiler không compile ra machine code là không đúng. Thực chất file code Java sau khi đưa vào compiler sẽ được compile ra thành machine code dành cho cái máy này. Trên các platform thực, JRE sẽ emulate JVM để recompile toàn bộ bytecode thành native code của platform đó. Để cho các chương trình Java chạy trên nhiều platform khác nhau | Nút nhấn Button import import . import . public class DemoButton extends Applet implements ActionListener private Button blueButton private Button whiteButton private Button helloButton public void init blueButton new Button Blue whiteButton new Button White helloButton new Button Hello this this this 25 Nút nhấn Button add blueButton add whiteButton add helloButton public void actionPerformed ActionEvent event . if helloButton this Hello else if blueButton else if whiteButton repaint Nút nhấn Button .