piinterrupt.java

来自「java多线程编程实例_Source」· Java 代码 · 共 51 行

JAVA
51
字号
public class PiInterrupt extends Object implements Runnable {
	private double latestPiEstimate;

	public void run() {
		try {
			System.out.println("for comparison, Math.PI=" + 
								Math.PI);
			calcPi(0.000000001);
			System.out.println("within accuracy, latest pi=" + 
								latestPiEstimate);
		} catch ( InterruptedException x ) {
			System.out.println("INTERRUPTED!! latest pi=" + 
								latestPiEstimate);
		}
	}

	private void calcPi(double accuracy) 
				throws InterruptedException {

		latestPiEstimate = 0.0;
		long iteration = 0;
		int sign = -1;

		while ( Math.abs(latestPiEstimate - Math.PI) > 
				accuracy ) {

			if ( Thread.interrupted() ) {
				throw new InterruptedException();
			}

			iteration++;
			sign = -sign;
			latestPiEstimate += 
					sign * 4.0 / ( ( 2 * iteration ) - 1 );
		}
	}

	public static void main(String[] args) {
		PiInterrupt pi = new PiInterrupt();
		Thread t = new Thread(pi);
		t.start();

		try {
			Thread.sleep(10000);
			t.interrupt();
		} catch ( InterruptedException x ) {
			// ignore
		}
	}
}

⌨️ 快捷键说明

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