sintable.java
来自「java threads 3th源码,包括各个章节的源代码」· Java 代码 · 共 45 行
JAVA
45 行
package javathreads.examples.ch15.example6;
import javathreads.examples.ch15.*;
public class SinTable extends GuidedLoopHandler {
private float lookupValues[];
public float sumValue;
public SinTable() {
super(0, 360*100, 100, 12);
lookupValues = new float [360 * 100];
}
public void loopDoRange(int start, int end) {
float sinValue = 0.0f;
float sumValue = 0.0f;
for (int i = start; i < end; i++) {
sinValue = (float)Math.sin((i % 360)*Math.PI/180.0);
lookupValues[i] = sinValue * (float)i / 180.0f;
sumValue += lookupValues[i];
}
synchronized (this) {
this.sumValue += sumValue;
}
}
public float[] getValues() {
loopProcess();
System.out.println(sumValue);
return lookupValues;
}
public static void main(String args[]) {
System.out.println("Starting Example 6 (Two-Stage Reduction Example)");
System.out.print("Sum: ");
SinTable st = new SinTable();
float results[] = st.getValues();
System.out.println("Results: "+ results[0]+ ", "+
results[1]+ ", "+ results[2]+ ", "+ "...");
System.out.println("Done");
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?