?? readtest.java
字號:
import dataInput.*;
/**
Test the time series read code.
*/
class readTest {
public static void main( String[] args ) {
tsRead ts = new tsRead("amat_close");
double[] vals = ts.getArray();
if (vals != null) {
for (int i = 0; i < vals.length; i++) {
System.out.println(i + " " + vals[i] );
}
}
else
System.out.println("readTest: time series is null");
} // main
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -