⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 policyengine.java

📁 队列调度算法的一种
💻 JAVA
字号:
//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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -