登录
首页 » Process-Thread » task simulation program. The first window must show a series of incremental numb

task simulation program. The first window must show a series of incremental numb

于 2022-02-16 发布 文件大小:212.16 kB
0 178
下载积分: 2 下载次数: 1

代码说明:

建立了一个包含四个窗口的多任务仿真程序。第一个窗口必须显示一系列递增的数字,第二个窗口必须显示一系列递增的素数,第三个窗口必须显示斐波那契数列(斐波那契数列0和1从每个数字的第一个开始是前两个和几个-即0、1、1、2、3、5、8等)。图中的三扇窗户立在窗户底部或滚动,或自行清除窗户内的物品。第四个窗口必须显示任意半径的圆,并且该过程必须按Escape键终止。

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • two experimental operating system : the process of scheduling strategy to achiev...
    操作系统实验2:进程调度策略的模拟实现 1、 设计一个有 N个进程共行的进程调度程序。 2、 每个进程有一个进程控制块PCB来表示,进程控制块的格式为: 进程名 优先数 到达时间 需要运行时间 已占用CPU时间 进程状态 a) 进程优先数、需要运行时间、到达时间可以事先人为地指定,也可以随机产生,注意初始化上述数值时要尽量使进程并发执行,而不是按到达时间顺序调度。 b) 进程的运行时间以时间片为单位进行计算。 c) 进程状态分为就绪、运行、完成三种状态之,分别用W、R、F表示。 3、 进程调度规则如下: a) 就绪进程获得 CPU后都只能运行一个时间片。用已占用CPU时间加1来表示。 b) 如果运行一个时间片后,进程已占用 CPU时间达到所需要运行时间,则进程完成,撤销该进程。 c) 如果运行一个时间片后,进程已占用CPU时间还未达到所需要运行时间,即进程需要继续运行,将它插入就绪队列,队列重新排序,等待CPU。 d) 重复以上过程,直到所要进程都完成为止。 -two experimental operating system : the process of scheduling strategy to achieve a simulation. Design is a process of a total of N the process scheduler. 2, each process is a process control block to PCB said that the process control block format : process a few who arrived at the priority needs time to time running CPU time a state process) process priority number. need to run time, arriving in time prior to artificially designated, can also randomly generated, Initialization attention to the above values are to m
    2022-02-20 17:25:28下载
    积分:1
  • 一个保护多线程应用中共享资源的例子。作者: Xiangyang Liu
    一个保护多线程应用中共享资源的例子。作者: Xiangyang Liu -protect a multi-threaded application resource-sharing example. Author : Liu Xiangyang
    2022-02-24 10:06:40下载
    积分:1
  • Multithreading is a powerful tool, we can each time the need to implement the ma...
    多线程是一个功能强大的工具,我们可以在每次需要执行长时间运行的任务时使用该工具。我们可以用它运行辅助代码,而无需绑定用户界面。但同时要注意,多线程操作非常复杂,要正确操作并不容易,而且调试起来也比较困难。 尽管不一定能够实现,但我们还是应该尽量为每个辅助线程提供一组它可以操作的独立数据。要达到这个目的,最简单的方法就是为每个线程创建一个对象,对象中包含该线程可以操作的数据以及完成工作所需的代码。 通过实现结构化的架构,使之充当辅助线程和 UI 线程之间的媒介,我们可以大大简化编写多线程代码和 UI 以对其进行控制的过程。本文就介绍了这样一个架构,您可以根据需要使用或进行调整,以满足特定的应用需要。(附有详细的中文说明)-Multithreading is a powerful tool, we can each time the need to implement the mandate of running the use of this tool. We can use it for running auxiliary code, without the bundled user interface. It should be noted that multi-threaded operation is very complex to operate correctly is not easy, but it is also testing more difficult. Although not necessarily to achieve, but we should still try to provide every support threaded a group it can operate independent of data. To achieve this purpose, the simplest way is to create a thread for each object, object contains the thread can operate and the data necessary to complete the work of the code. Through the structure of the archit
    2023-06-08 19:10:04下载
    积分:1
  • 一个高精度的定时器,很不错哦,希望对大家有用
    一个高精度的定时器,很不错哦,希望对大家有用-a precision timer, oh very good, useful for all. .
    2022-05-07 09:22:45下载
    积分:1
  • a simple and easy to use and useful Visual C multithreading example,
    一个简单易套用且实用的Visual C++多线程例子,-a simple and easy to use and useful Visual C multithreading example,
    2022-02-06 20:18:47下载
    积分:1
  • 使用信号量对象实现线程的同步的一个实例
    使用信号量对象实现线程的同步的一个实例- The use signal quantity object realizes a line regulation synchronization example
    2022-01-28 10:10:45下载
    积分:1
  • 多线程文件下载客户端
    多线程文件下载客户端-multi-threaded client files
    2023-02-03 06:20:03下载
    积分:1
  • 一个可以在DELPHI进行us和ms级别的delay
    一个可以在DELPHI进行us和ms级别的delay-one can DELPHI for us and the level of delay ms
    2022-05-23 15:51:06下载
    积分:1
  • 依次执行一系列程序且每个程序之间执行有时间间隔。
    依次执行一系列程序且每个程序之间执行有时间间隔。- Carries out between in turn a series of procedures also each procedure carries out has the time-gap.
    2022-03-07 19:38:14下载
    积分:1
  • 多线程控制实例。一个用户界面线程,负责响应工作者线程。...
    多线程控制实例。一个用户界面线程,负责响应工作者线程。-multithreaded control examples. A user interface thread, the thread is responsible for response workers.
    2022-03-04 06:15:17下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载