




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、课程设计(综合实验)报告( 2013 - 2014 年度第 学期)名 称: Windows体系编程 题 目: 课内综合实验 院 系: 计算机科学与技术 班 级: 计科1103 学 号: 201109010307 学生姓名: * 指导教师:* 实验学时: 12学时 成 绩: 日期:2014年 5月 26日第17页一、课程设计(综合实验)的目的与要求1. 理解Windows编程环境下的进程管理机制,能创建一个完成特定功能的进程,能对进程进行信息的获取、终止和保护,实现一个类Windows的进程任务管理器。 11 能够完成创建进程的功能,打印输出新建进程ID。12 获取当前系统进程信息,列出可选显示
2、进程信息项,根据选择显示输出进程信息。13 终止任意进程并获取退出代码。14 具体实现技术不限。2. 理解Windows编程环境下的线程同步机制,掌握线程同步的方法,包括临界区对象、事件内核对象、互锁函数等方法,并能用线程同步解决经典的线程同步问题,体会多线程编程。. 2.1 为每个哲学家产生一个线程,设计正确的同步算法2.2 每个哲学家取得一双筷子开始用餐后,即时显示“Dining”和该哲学家的自定义标识符以及餐桌上所有几位哲学家标识符及其所坐的位置。2.3 设定共有5个哲学家需用餐。每位用餐耗时10秒钟以上。2.4 多个哲学家须共享操作函数代码,最好有界面展示。3. 该实验为综合实验,通过
3、该实验,使学生学习使用visual c#进行简单的综合功能的系统开发。巩固Windows编程的基础知识,增加学生的利用图形子环境编程的综合能力,包括界面设计能力、使用GDI,GDI+或WPF的能力等。 3.1 利用GDI,GDI+或WPF实现简单绘图器,选其中一种即可,编程环境不限。 3.2 实现绘制线条、矩形、圆形,可改变线条或填充的颜色。2、 设计(实验)正文1、源代码: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawi
4、ng;using System.Linq;using System.Text;using System.Windows.Forms;using System.Diagnostics;using System.Threading;namespace WindowsProcess public partial class Form1 : Form public bool isRunRefresh = true; private void RefreshProcess() /TODO刷新 Thread th; public Form1() InitializeComponent(); GetProc
5、ess(); Action a = new Action(this.RefreshProcess); th = new Thread() => while (this.isRunRefresh) this.Invoke(a); Thread.Sleep(1000);/每1000毫秒刷新一次 ); th.Start(); this.FormClosing += new FormClosingEventHandler(object o, FormClosingEventArgs e) => if (th != null) th.Abort(); this.isRunRefresh =
6、false; ); private int count; private void GetProcess() listView1.Items.Clear(); Process proList = Process.GetProcesses(".");/获得本机的进程 count=proList.Length; /当前进程数量 lblNumber.Text = count.ToString(); foreach (Process p in proList) ListViewItem lvi = new ListViewItem(); lvi.Text = p.ProcessNa
7、me; lvi.SubItems.AddRange(new string p.Id.ToString(), p.PrivateMemorySize64.ToString() ); /进程ID 使用内存 listView1.Items.Add(lvi); /*启动一进程事件* private void button2_Click(object sender, EventArgs e) if (textBox1.Text != string.Empty) Process.Start(textBox1.Text); /启动一个进程 count+; lblNumber.Text = count.ToS
8、tring(); /当前进程数量 else MessageBox.Show("请输入启动项"); textBox1.Focus(); /*结束进程事件* private void button1_Click(object sender, EventArgs e) if (listView1.SelectedItems.Count > 0) try string proName = listView1.SelectedItems0.Text; Process p = Process.GetProcessesByName(proName); /根据进程命获得指定的进程 p
9、0.Kill(); /杀死该进程 MessageBox.Show("进程关闭成功!"); GetProcess(); catch MessageBox.Show("无法关闭此进程!"); else MessageBox.Show("请选择要终止的进程!"); /*退出按钮事件* private void button3_Click(object sender, EventArgs e) this.Close(); private void 退出ToolStripMenuItem_Click(object sender, EventAr
10、gs e) this.Close(); private void 刷新ToolStripMenuItem_Click(object sender, EventArgs e) listView1.Items.Clear(); Process proList = Process.GetProcesses(".");/获得本机的进程 count = proList.Length; /当前进程数量 lblNumber.Text = count.ToString(); foreach (Process p in proList) ListViewItem lvi = new List
11、ViewItem(); lvi.Text = p.ProcessName; lvi.SubItems.AddRange(new string p.Id.ToString(), p.PrivateMemorySize64.ToString() ); /进程ID 使用内存 listView1.Items.Add(lvi); private void 撤销ToolStripMenuItem_Click(object sender, EventArgs e) textBox1.Text = "" private void timer1_Tick(object sender, Eve
12、ntArgs e) timer1.Enabled = true; toolStripTextBox1.Visible = true; toolStripTextBox1.Enabled = true; toolStripTextBox1.Font = new Font(FontFamily.GenericMonospace, 11); toolStripTextBox1.ForeColor = Color.Black; toolStripTextBox1.TextAlign = ContentAlignment.MiddleCenter; toolStripTextBox1.Text = Da
13、teTime.Now.ToString(); 运行结果:2. 源代码:#include <windows.h>#include <time.h> #include <iostream>using namespace std; const int PHILOSOPHER_NUM=5; const char THINKING=1; const char HUNGRY=2;const char DINING=3;HANDLE hPhilosopherPHILOSOPHER_NUM; HANDLE semaphorePHILOSOPHER_NUM; HANDLE m
14、utex; DWORD WINAPI philosopherProc( LPVOID lpParameter) int myid;char idStr128;char stateStr128;char mystate;int ret;int leftFork; int rightFork; myid = int(lpParameter);itoa(myid, idStr, 10);WaitForSingleObject(mutex, INFINITE);cout << "第 " << myid << "位哲学家就绪"
15、<< endl;ReleaseMutex(mutex);mystate = THINKING; /初始状态为THINKINGleftFork = (myid) % PHILOSOPHER_NUM;rightFork = (myid + 1) % PHILOSOPHER_NUM;while (true)switch(mystate)case THINKING:mystate = HUNGRY; / 改变状态 strcpy(stateStr, "HUNGRY"); break;case HUNGRY:strcpy(stateStr, "HUNGRY&quo
16、t;);ret = WaitForSingleObject(semaphoreleftFork, 0); / 先检查左筷子是否可用if (ret = WAIT_OBJECT_0) ret = WaitForSingleObject(semaphorerightFork, 0); /左筷子可用就拿起,再检查右筷子是否可用 if (ret = WAIT_OBJECT_0)mystate = DINING; / 右筷子可用,就改变自己的状态strcpy(stateStr, "DINING");else ReleaseSemaphore(semaphoreleftFork, 1,
17、NULL); / 如果右筷子不可用,就把左筷子放下break;case DINING:/ 吃完后把两支筷子都放下ReleaseSemaphore(semaphoreleftFork, 1, NULL);ReleaseSemaphore(semaphorerightFork, 1, NULL);mystate = THINKING; / 改变自己的状态strcpy(stateStr, "THINKING");break; / 输出状态WaitForSingleObject(mutex, INFINITE);cout << "第 " <&l
18、t; myid << " 位哲学家正在 " << stateStr << endl; ReleaseMutex(mutex); / sleep a random time : between 1 - 5 ssrand(int)time(NULL);int sleepTime ;sleepTime = rand()%100; Sleep(sleepTime*100);int main(void)int i;mutex = CreateMutex(NULL, false, NULL); / 创建互斥对象for (i=0; i<PHILO
19、SOPHER_NUM; i+)semaphorei = CreateSemaphore(NULL, 1, 1, NULL); /创建信号量hPhilosopheri=CreateThread(NULL,0,philosopherProc,LPVOID(i), CREATE_SUSPENDED,0); /创建线程for (i=0; i<PHILOSOPHER_NUM; i+)ResumeThread(hPhilosopheri);Sleep(2000);system("pause");return 0;运行结果:3. 设计的窗口:左侧用PictureBox来显示图片,右
20、侧为画图使用的各种工具及绘图图形脱放button并编写代码置入相应的后台事件。主要源代码:using System;using System.Drawing;using System.Collections;using System.ComponentModel;using System.Windows.Forms;using System.Data;using System.Drawing.Drawing2D;using System.IO;using System.Drawing.Imaging;namespace GraphicalCS/ <summary>/ Summary
21、 description for MainWindow./ </summary>public class MainWindow : System.Windows.Forms.Formpublic MainWindow()InitializeComponent();/this.SetStyle(ControlStyles.DoubleBuffer | /双重缓冲ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint,true);this.UpdateStyles();private void Drawing_Paint
22、(object sender, System.Windows.Forms.PaintEventArgs e) Graphics displayGraphics = e.Graphics;switch(newType)case ImageType.Point:displayGraphics.DrawRectangle(new Pen(newColor,lineWidth),new Rectangle(newPoint.StartP, new Size(1, 1);break;case ImageType.Line:displayGraphics.DrawLine(new Pen(newColor
23、,lineWidth),newPoint.StartP,newPoint.EndP);break;case ImageType.Circle:displayGraphics.DrawLine(new Pen(newColor),newPoint.StartP,newPoint.EndP);break;case ImageType.FillCircle:displayGraphics.DrawLine(new Pen(newColor),newPoint.StartP,newPoint.EndP);break;case ImageType.Rectangle:displayGraphics.Dr
24、awRectangle(new Pen(newColor,lineWidth),newPoint.Rect);break;case ImageType.FillRectangle:displayGraphics.FillRectangle(new SolidBrush(newColor),newPoint.Rect);break;case ImageType.Ellipse:displayGraphics.DrawEllipse(new Pen(newColor,lineWidth),newPoint.Rect);break;case ImageType.FillEllipse:display
25、Graphics.FillEllipse(new SolidBrush(newColor),newPoint.Rect);break;case ImageType.Path:displayGraphics.DrawPath(new Pen(newColor,lineWidth), mousePath);break;case ImageType.Eraser:displayGraphics.FillRegion(new SolidBrush(newColor), newRegion);break;case ImageType.Polygon:tempPoint.DrawList(displayG
26、raphics);break;case ImageType.Curve:tempPoint.DrawList(displayGraphics);break;case ImageType.ClosedCurve:tempPoint.DrawList(displayGraphics);break;case ImageType.Empty:break;case ImageType.Pick:if(picked = true)pointViewList.DrawList(displayGraphics);if(changed = true&&drawImageTyperegionInd
27、ex!=(int)ImageType.Path)if(drawImageTyperegionIndex=(int)ImageType.Rectangle)displayGraphics.DrawRectangle(new Pen(newColor,lineWidth), tempChangePoint.Rect);else if(drawImageTyperegionIndex=(int)ImageType.FillRectangle)displayGraphics.FillRectangle(new SolidBrush(newColor), tempChangePoint.Rect);el
28、se if(drawImageTyperegionIndex=(int)ImageType.Ellipse|drawImageTyperegionIndex=(int)ImageType.FillEllipse)displayGraphics.DrawRectangle(new Pen(Color.Black,1), tempChangePoint.Rect);break;drawingList.DrawList(displayGraphics);if(eraser = true)notchangeList.DrawList(displayGraphics);/g.Dispose();priv
29、ate void Point2Region(Point p)Point point = new Pointp.Length;int j = 0;foreach(Point newp in p)pointj+=newp;tempRegion = new Regionp.Length;for(int i=0;i<p.Length;i+)pointi.Offset(-(int)(2*lineWidth),-(int)(2*lineWidth);Rectangle r = new Rectangle(pointi,new Size(int)(4*lineWidth),(int)(4*lineWi
30、dth);Region rr = new Region(r);tempRegioni = rr;private void Point2Region(Point p)Point point = new Pointp.Length;int j = 0;foreach(Point newp in p)pointj+=newp;tempRegion = new Regionp.Length;for(int i=0;i<p.Length;i+)pointi.Offset(-(int)(2*lineWidth),-(int)(2*lineWidth);Rectangle r = new Rectan
31、gle(pointi,new Size(int)(4*lineWidth),(int)(4*lineWidth);Region rr = new Region(r);tempRegioni = rr;private void RegionMove(int index, int x, int y)for(int i=0;i<pointArrayindex.Length;i+)pointArrayindexi.X = tempMovePointi.X + x;pointArrayindexi.Y = tempMovePointi.Y + y;private void PointView(in
32、t index)Point tempPoint2;foreach(Point tempPoint in pointArrayindex)tempPoint2 = tempPoint;tempPoint.Offset(-(int)(2*lineWidth),-(int)(2*lineWidth);tempPoint2.Offset(int)(2*lineWidth),(int)(2*lineWidth);pointViewList.Add(new DHollowRectangle(new PointtempPoint,tempPoint2,Color.DarkRed,1);tempPoint.O
33、ffset(int)(2*lineWidth),(int)(2*lineWidth);private void PointChange(int index)Point tempPoint2;for(int i=0;i<pointArrayindex.Length;i+)tempPoint2 = pointArrayindexi;pointArrayindexi.Offset(-(int)(2*lineWidth),-(int)(2*lineWidth);tempPoint2.Offset(int)(2*lineWidth),(int)(2*lineWidth);pointViewList
34、i.pointchange(new PointpointArrayindexi,tempPoint2);pointArrayindexi.Offset(int)(2*lineWidth),(int)(2*lineWidth);private void RegionChange(int index)ImageType tempType = (ImageType)drawImageTypeindex;switch(tempType)case ImageType.Point:regionCollectionindex = new Region(new Rectangle(pointArrayinde
35、x0, new Size(int)lineWidth*4, (int)lineWidth*4);break;case ImageType.Line:if(Math.Abs(float)(pointArrayindex0.Y-pointArrayindex1.Y)/(float)(pointArrayindex0.X-pointArrayindex1.X)<=1) regionPath = new GraphicsPath(new Point new Point(pointArrayindex0.X,pointArrayindex0.Y-10), new Point(pointArrayi
36、ndex1.X,pointArrayindex1.Y-10), new Point(pointArrayindex1.X,pointArrayindex1.Y+10), new Point(pointArrayindex0.X,pointArrayindex0.Y+10), new Point(pointArrayindex0.X,pointArrayindex0.Y-10) ,new byte (byte)PathPointType.Start, (byte)PathPointType.Line, (byte)PathPointType.Line, (byte)PathPointType.L
37、ine, (byte)PathPointType.Line );elseregionPath = new GraphicsPath(new Point new Point(pointArrayindex0.X-10,pointArrayindex0.Y), new Point(pointArrayindex0.X+10,pointArrayindex0.Y), new Point(pointArrayindex1.X+10,pointArrayindex1.Y), new Point(pointArrayindex1.X-10,pointArrayindex1.Y), new Point(pointArrayindex0.X-10,pointArrayindex0.Y) ,new byte (byte)PathPointType.Start, (byte)PathPointType.Line, (byte)PathPointType.Line, (byte)PathPointType.Line, (byte)PathPointType.Line );regionPath.CloseF
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 代销电子合同样本
- 光伏发电贷款托管合同样本
- 住宅整体出售合同范本
- 个人猪场出租合同标准文本
- 买卖中介房屋合同样本
- 二手办公桌椅采购合同范例
- 光船租赁合同样本
- 人事调动合同样本
- 2025办公室租赁合同范本参考
- 2025至2030年中国单螺杆型材挤出机组市场调查研究报告
- 思想道德与法治课件:第四章 第二节 社会主义核心价值观的显著特征
- 750千伏变电站工程项目管理实施规划
- 《中医内科学》教学课件-痿证(49页PPT)
- 深圳初中化学知识点总结(大全)
- 数据中心机房项目可行性研究报告-用于立项备案
- 热风炉耐材砌筑施工方案
- (完整版)高中状语从句练习题带答案
- 人教版六年级道德与法治下册课件 第二单元 爱护地球 共同责任 4 地球——我们的家园
- (完整word版)宿舍建筑平面图
- 《理工英语1》课程导学PPT课件
- 电梯台账表格(精编版)
评论
0/150
提交评论