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

📄 pcb.cs

📁 操作系统 作业调度程序 课程设计文档 对于linux系统的学习有很大帮助
💻 CS
字号:
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
namespace 操作系统
{
    class PCB
    {
        public int  PID;           //进程序号
        public int Intime;       //进入系统的时间
        public int RequestTime; //进程请求运行时间
        public int waittime;   //等待时间
        public int PRI;        //优先数
        
        
        public PCB() { }
        public PCB(int PID, int Intime, int RequestTime)
        {
            //Queue q = Queue();

            this.PID = PID;
            this.Intime = Intime;
            this.RequestTime = RequestTime;
            
        }

        
       

    }


}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -