📄 pcb.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 + -