📄 page.java
字号:
public class Page
{
public int id;
public int physical;
public byte R;
public byte M;
public int inMemTime;
public int lastTouchTime;
public long high;
public long low;
public Page( int id, int physical, byte R, byte M, int inMemTime, int lastTouchTime, long high, long low )
{
this.id = id;
this.physical = physical;
this.R = R;
this.M = M;
this.inMemTime = inMemTime;
this.lastTouchTime = lastTouchTime;
this.high = high;
this.low = low;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -