Tham khảo tài liệu 'lập trình java cơ bản : multithreading part 8', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Kết quả khi có đồng bộ Producer writes 1 Consumer reads 1 Producer writes 2 Consumer reads 2 Producer writes 3 Consumer reads 3 Producer writes 4 Consumer reads 4 Producer writes 5 Producer finished. Consumer reads 5 Consumer finished. 36 Tạo tuyến từ giao tiếp Runnable Một lớp có thể trở thành một tuyến khi cài đặt giao tiếp Runnable giao tiếp này chỉ có một phương thức run duy nhất . Ví dụ Tạo applet có quả bóng chạy 37 Tạo tuyến từ giao tiếp Runnable import . import . public class BallFlying extends Applet implements Runnable Thread animThread null int ballX 0 ballY 50 int dx 1 dy 2 boolean stopRun false public void start applet starts if animThread null animThread new Thread this .