• 大小: 677KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-22
  • 语言: Java
  • 标签: 操作系统  

资源简介

操作系统课程设计,使用java语言模拟一个简单操作系统的运行过程,具备可视化界面

资源截图

代码片段和文件信息

package myos;



import java.io.UnsupportedEncodingException;
import java.util.*;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;

/**
 * Created by lindanpeng on 2017/10/15.
 */
public class Demo {
    public static void main(String[] args) throws UnsupportedEncodingException InterruptedException {
//        linkedList list=new linkedList<>();
//        list.add(“a“);
//        list.add(“b“);
//        list.add(“c“);
//        ListIterator iterator=list.listIterator();
//        System.out.println(iterator.next());
//        System.out.println(iterator.next());
//        System.out.println(iterator.next());
//        System.out.println(iterator.next());
//        if (iterator.hasPrevious()){
//            System.out.println(iterator.previous());
//        }
//        ExecutorService executorService= Executors.newFixedThreadPool(2);
//        B b1=new B();
//        B b2=new B();
//        executorService.execute(b1);
//        executorService.execute(b2);
//        executorService.shutdownNow();
//        executorService.execute(b1);
//        executorService.execute(b2);
        String srt=“str“;
        List list=new ArrayList<>();
        list.add(srt);
        list.add(srt);
        System.out.println(list.size());
    }
}

class A{
    protected  String name=“hello“;
    public A(){

    }
}
class B extends A implements Runnable{
    private String name;
    public B(){
        super();

    }

    @Override
    public void run() {
        try {
        for (int i=0;i<1000;i++){
            System.out.println(i);
                Thread.sleep(2000);
        }
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件         22  2018-01-03 23:02  myOs\.git\COMMIT_EDITMSG

     文件        239  2017-11-29 23:21  myOs\.git\config

     文件         73  2017-11-29 23:16  myOs\.git\description

     文件         96  2018-01-01 15:57  myOs\.git\FETCH_HEAD

     文件         23  2017-11-29 23:16  myOs\.git\HEAD

     文件        478  2017-11-29 23:16  myOs\.git\hooks\applypatch-msg.sample

     文件        896  2017-11-29 23:16  myOs\.git\hooks\commit-msg.sample

     文件        189  2017-11-29 23:16  myOs\.git\hooks\post-update.sample

     文件        424  2017-11-29 23:16  myOs\.git\hooks\pre-applypatch.sample

     文件       1642  2017-11-29 23:16  myOs\.git\hooks\pre-commit.sample

     文件       1348  2017-11-29 23:16  myOs\.git\hooks\pre-push.sample

     文件       4951  2017-11-29 23:16  myOs\.git\hooks\pre-rebase.sample

     文件        544  2017-11-29 23:16  myOs\.git\hooks\pre-receive.sample

     文件       1239  2017-11-29 23:16  myOs\.git\hooks\prepare-commit-msg.sample

     文件       3610  2017-11-29 23:16  myOs\.git\hooks\update.sample

     文件       4898  2018-01-05 12:33  myOs\.git\index

     文件        240  2017-11-29 23:16  myOs\.git\info\exclude

     文件       4579  2018-01-03 23:02  myOs\.git\logs\HEAD

     文件       4391  2018-01-03 23:02  myOs\.git\logs\refs\heads\master

     文件       3658  2018-01-03 23:03  myOs\.git\logs\refs\remotes\origin\master

     文件         88  2017-12-11 14:43  myOs\.git\objects\03\4eac3a949da2da9f6c4b72e94e142ee38d2f64

     文件         63  2017-12-28 13:31  myOs\.git\objects\03\edf3fac91cfe489a29e15f4c4673fe1522ff67

     文件        178  2017-12-28 18:45  myOs\.git\objects\04\4a603f750404c9eef4726e841636ecb3a341d6

     文件        200  2017-12-28 18:45  myOs\.git\objects\04\6d149a61d9b3c0c10d654c78ea0d976f33f82d

     文件        323  2017-12-30 00:31  myOs\.git\objects\06\899722771fd66024c50500b706a0175376dcb2

     文件        522  2017-12-06 10:57  myOs\.git\objects\06\fa3d4aec24f389aa99b17b6bcea879852b3692

     文件        268  2017-12-30 00:31  myOs\.git\objects\07\2bb287bd7512ab58bb8604e8dba1a785d287fc

     文件         59  2017-12-28 18:45  myOs\.git\objects\08\03578e2653c24f6d3422d6a355ddc1c0ee2755

     文件       1043  2017-12-25 10:15  myOs\.git\objects\08\98c0d546c8bd1db2685d986f08fc6bf27f50f8

     文件        110  2017-12-29 16:34  myOs\.git\objects\0e\abed8c0aaecd130355d4b5a437d1444085b8de

............此处省略920个文件信息

评论

共有 条评论