policyengine.java
来自「队列调度算法的一种」· Java 代码 · 共 31 行
JAVA
31 行
//Source file: E:/工作和学习/工作/硕士论文工作/程序/数据库缓存管理/20040304/src/PolicyEngine.java
/* tangtang */
package DBCachePak;
/**
* @author
* @version
*/
public class PolicyEngine
{
public HitComputing theHitComputing;
public DBCacheUpdateComputing theDBCacheUpdateComputing;
public SuperCacheUpdateComputing theSuperCacheUpdateComputing;
/**
* @return
* @exception
* @author
* @version
* @roseuid 4075568902EE
*/
public PolicyEngine()
{
theHitComputing=new HitComputing();
theDBCacheUpdateComputing=new DBCacheUpdateComputing();
theSuperCacheUpdateComputing=new SuperCacheUpdateComputing();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?