这段代码什么意思啊

来源:百度知道 编辑:UC知道 时间:2024/09/23 12:45:17
// Current level record = {byte LEVEL_TAG; int level;}
private int levelId; // The record Id of the level record
private byte[] levelRec; // Byte array holding the level
private static final int LEVEL_LEN = 9;
private static final byte LEVEL_TAG = 1;

private int levelId; // 声望局部变量levelId
private byte[] levelRec; // 声望局部数组levelRec
private static final int LEVEL_LEN = 9; // 声望静态的最终变量LEVEL_LEN

private static final byte LEVEL_TAG = 1;// 声望静态的最终变量

这里面应该是定义申明变量吧。