摘要:
SOCKET Socket相当于手机,代表通讯方式,客户端要连接服务器端,那么要拨打电话,那么这个IP地址以及每个应用程序的端口号构成了电话号码,服务器端至少两个Socket,一个负责监听是否有人打电话进来,另一个是当监听到有人打进来的时候,创建的一个新的通讯给他们连接,其实就是总座机跟分机的区别 阅读全文
摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
摘要:
单线程给我们带来的问题:单线程会导致计算机运行复杂程序的时候,其他方面的功能会进入假死状态,就是会影响到其他功能 所以我们用多线程来分担这种复杂的程序计算,从而让主程序不受到影响 多线程可以让计算机同时做多件事情,节约时间 多线程可以让一个程序同时处理多个事情 后台运行程序,提高程序的运行效率,也不 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using System.Threading.Tasks; namespac 阅读全文
摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文
摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using System.Li 阅读全文