balllistenerthread.java

来自「sun官方网站Swing的指南(English)」· Java 代码 · 共 39 行

JAVA
39
字号
package bingo.shared;import java.net.*;import java.io.*;public class BallListenerThread extends ListenerThread {    private BallListener notifyee;    public BallListenerThread(BallListener notifyee)        throws IOException    {	super(Constants.BallListeningGroup);	this.notifyee = notifyee;    }    public synchronized void run() {	DatagramPacket packet;        while (stopListening == false) {	    byte[] buf = new byte[256];            packet = new DatagramPacket(buf, 256);	    try {                socket.receive(packet);		byte[] rcvd = packet.getData();		BingoBall b = new BingoBall(rcvd);		if (b.getNumber() == BingoBall.GAME_OVER) {		    notifyee.noMoreBalls();		} else		    notifyee.ballCalled(b);	    } catch (IOException e) {		    // PENDING: what goes in here?	    }        }    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?