?? 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 + -