noteBook2.16-C#基础第十六天

进程类

计算机中每一个程序都是一个进程,一个进程又由多个线程组成;

单线程带来的问题:程序假死(程序未结束则不能操作下一步)用多线程解决;

在.Net下,不允许跨线程访问;

Process      Using System.Threading.Tasks;

Process[]    pros=Process.GetProcesses();//获得电脑中正在运行的线程

Process.Start("             ");//用进程方式打开程序calc,mspaint,iexplore,http://www.baidu.com

用进程打开指定文件:

1.Process p=newProcess();

2.ProcessStartInfopsi=new ProcessStartInfo(@"全路径");

3.p.StartInfo=psi;

4.p.Start();

多线程(让一个程序同时处理多个事件)

Thread——>System.Threading

前台线程:所有的前台线程都关闭才能完成程序关闭;

后台线程:所有的前台线程结束,后台线程自动结束;

//创建一个线程执行Test方法

Thread th=newThread(Test);

th.Start();

//这里的th线程在主线程关闭后仍会执行,需要将th设置为后台线程,这样前台线程结束后,th将自动关闭

th.IsBackground=true;

在.Net下,不允许跨线程访问;解决方法:取消主线程对错误线程调用的捕获

Control。CheckIllegalCrossThreadCalls=false;

*多线程可能存在的异常:主线程关了,但是新线程延时关闭了,会报错;

解决方法为FormClosing事件,关闭窗体时判断新线程是否为null,不为空则手动关闭这个线程,th.Abort();那么线程会立即结束。

Thread.Sleep(time);//让线程睡眠相应事件后再启动,单位ms

Thread.CurrentThread;获得当前线程引用

ofd.FileNames;获得我们在文件夹中选择的多个文件的全路径

*如果线程执行的方法中需要参数,那么要求这个参数必须是object类型,传递参数放在th.Start("参数")

Socket(进程通信机制)

用于描述IP地址和端口,是一种通信链的句柄

主机有很多服务,一个服务打开一个Socket,绑定一个端口,不同的端口对应不同的服务(应用程序)

Tcp,UDP

http用80端口,ftp用21端口,smtp用25端口

1.流式Socket:50000

面向连接的Socket,针对面向连接的TCP服务应用,安全效率低

2.数据式Socket(DateGram)

一种无连接的Socket,对应于无连接的UDP服务应用,不安全(丢失数据,顺序混乱),效率高

Socket通信过程:

1.服务器端:

申请一个Socket——绑定到一个IP地址和一个端口——开启侦听,等待接受连接

2.客户端

申请一个Socket——连接服务器(指明IP和端口号)

相关类:IPAddress类(包含了一个IP地址),IPEndPoint类(包含一个IP地址和端口号)

相关方法:

Socket();创建一个Socket

Bind();绑定一个本地的IP和端口号(IPEndPoint)

Listen();让Socket侦听传入的连接尝试,并指定侦听队列容量

Connect();初始化与另一个Socket的连接

Accept();接收连接并返回一个新的Socket

Send();输出数据到Socket

Receive();从Socket中读取数据

Close();关闭Socket,销毁连接

IPAddress.Any;IPAddress.Parse();

using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; namespace NoteBook { /// <summary> /// About 的摘要说明。 /// </summary> public class About : System.Windows.Forms.Form { private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label4; private System.Windows.Forms.Label label5; /// <summary> /// 必需的设计器变量。 /// </summary> private System.ComponentModel.Container components = null; public About() { // // Windows 窗体设计器支持所必需的 // InitializeComponent(); // // TODO: 在 InitializeComponent 调用后添加任何构造函数代码 // } /// <summary> /// 清理所有正在使用的资源。 /// </summary> protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region Windows 窗体设计器生成的代码 /// <summary> /// 设计器支持所需的方法 - 不要使用代码编辑器修改 /// 此方法的内容。 /// </summary> private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(About)); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // label1 // this.label1.ForeColor = System.Drawing.Color.Red; this.label1.Image = ((System.Drawing.Image)(resources.GetObject("label1.Image"))); this.label1.Location = new System.Drawing.Point(0, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(496, 128); this.label1.TabIndex = 0; this.label1.Text = "label1"; // // label2 // this.label2.Font = new System.Drawing.Font("华文新魏", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label2.Location = new System.Drawing.Point(16, 147); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(192, 32); this.label2.TabIndex = 1; this.label2.Text = "记事本编辑器"; // // label3 // this.label3.Font = new System.Drawing.Font("华文行楷", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label3.ForeColor = System.Drawing.Color.RoyalBlue; this.label3.Location = new System.Drawing.Point(16, 224); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(232, 24); this.label3.TabIndex = 2; this.label3.Text = " 版权所有,翻版必究!"; // // label4 // this.label4.Font = new System.Drawing.Font("华文新魏", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134))); this.label4.Location = new System.Drawing.Point(240, 151); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(248, 32); this.label4.TabIndex = 3; this.label4.Text = "计算机3063班 C#课程设计 "; // // label5 // this.label5.Image = ((System.Drawing.Image)(resources.GetObject("label5.Image"))); this.label5.Location = new System.Drawing.Point(256, 197); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(240, 64); this.label5.TabIndex = 4; // // About // this.AutoScaleBaseSize = new System.Drawing.Size(6, 14); this.BackColor = System.Drawing.Color.Black; this.ClientSize = new System.Drawing.Size(496, 262); this.Controls.Add(this.label5); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.ForeColor = System.Drawing.Color.Red; this.Name = "About"; this.Text = "关于我的记事本"; this.ResumeLayout(false); } #endregion } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值