📄 recheader.java
字号:
/* * (C) 2001 by Argonne National Laboratory * See COPYRIGHT in top-level directory. *//* * @author Anthony Chan */package logformat.clog;import java.io.*;// Class corresponds to CLOG_HEADERpublic class RecHeader{ private static final int BYTESIZE = 8 + 4 * 4; public double timestamp; public int rectype; public int length; public int taskID; // i.e. procid, = rank in MPI_COMM_WORLD private static int pad; public RecHeader() { timestamp = Const.INVALID_double; rectype = Const.INVALID_int; length = Const.INVALID_int; taskID = Const.INVALID_int; pad = Const.INVALID_int; } public RecHeader( DataInputStream istm ) { this.readFromDataStream( istm ); } public int readFromDataStream( DataInputStream istm ) { try { timestamp = istm.readDouble(); rectype = istm.readInt(); length = istm.readInt(); taskID = istm.readInt(); pad = istm.readInt(); } catch ( IOException ioerr ) { ioerr.printStackTrace(); return 0; } return BYTESIZE; } public int skipBytesFromDataStream( DataInputStream in ) { try { in.skipBytes( BYTESIZE ); } catch ( IOException ioerr ) { ioerr.printStackTrace(); return 0; } return BYTESIZE; } //Copy Constructor public RecHeader copy() { RecHeader cp = new RecHeader(); cp.timestamp = this.timestamp; cp.rectype = this.rectype; cp.length = this.length; cp.taskID = this.taskID; cp.pad = this.pad; return cp; } public int getRecType() { return this.rectype; } public String toString() { return ( "RecHeader" + "[ timestamp=" + timestamp + ", rectype=" + rectype + ", length=" + length + ", taskID=" + taskID // + ", pad =" + pad // + ", BYTESIZE=" + BYTESIZE + " ]" ); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -