1、课外:为什么object数组可以赋值给object类型,int数组却不能赋值给int类型?
答:因为不管是什么什么数组都继承自Array,而Array又继承自object。
2、线程:是操作系统分配处理器时间的基本单元。
3、支持抢先多任务处理的操作系统可以创建多个进程中的多个线程同时执行的效果。
实现:在需要处理器时间的线程之间分割可用处理器时间,并轮流为每个线程分配处理器时间片。当前执行的线程在其时间片结束时被挂起,而另一个线程继续运行。当系统从一个线程切换到另一个线程时,它将保存被抢先的线程的上下文,并重新加载线程队列中下一个线程的已保存线程上下文。
4、.NET 用Thread创建并控制线程。注意:引入using
例:class Program
{
static void Main(string[] args)
{
ThreadStart ts = new ThreadStart(F1);
Thread th1 = new Thread(ts);
ThreadStart ts1 = new ThreadStart(F2);
Thread th2 = new Thread(ts1);
th1.Start();
th2.Start();
th1.Abort();
}
static void F1()
{
while (true)
{
Console.WriteLine("00000");
Thread.Sleep(200);
}
}
static void F2()
{
while (true)
{
Console.WriteLine("11111");
Thread.Sleep(200);
}
}
}
5、线程的几个方法:Abort终止线程执行,Sleep使线程睡眠一段时间,方法的参数单位为毫秒,Join可以使线程阻塞
以join为例实现线程阻塞:
class Program
{
static Thread ThrTest1, ThrTest2;
static void Main(string[] args)
{
ThreadStart TS1 = new ThreadStart(F1);
ThrTest1 = new Thread(TS1);
ThreadStart TS2 = new ThreadStart(F2);
ThrTest2 = new Thread(TS2);
ThrTest1.Start();
ThrTest2.Start();
}
public static void F1()
{
for (int i = 0; i < 20;i++ )
{
if (i == 10)
{
ThrTest2.Join();
}
Console.ForegroundColor = ConsoleColor.Blue;
Console.WriteLine(i.ToString()+"F1");
Thread.Sleep(500);
}
}
public static void F2()
{
for (int i = 0; i < 20; i++)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine(i.ToString()+"F2");
Thread.Sleep(500);
}
}
}
6、lock用来实现同步控制,在几个窗口同时在卖火车票或几个售货员同时在卖东西等可以用到lock。
以卖书为例:
class Program
{
static void Main(string[] args)
{
BookShop a = new BookShop();
Thread t2 = new Thread(new ThreadStart(a.Sale));
t2.Name = "李四";
Thread t1 = new Thread(new ThreadStart(a.Sale));
t1.Name = "张三";
t2.Start();
t1.Start(); }
}
public class BookShop
{
int num = 50;
int i = 0;
int j = 0;
public void Sale()
{
while (num>0)
{
lock (this)
{
if (num > 0)
{
Thread.Sleep(5);
num = num - 1;
Console.WriteLine(Thread.CurrentThread.Name + "售出一本!");
if (Thread.CurrentThread.Name=="张三")
{
i++;
}
else
{
j++;
}
}
else
{
Console.WriteLine(Thread.CurrentThread.Name + "没有了!");
Console.WriteLine("李四售出{0}本,张三售出{1}本!",j,i);
if (i > j)
{
Console.ForegroundColor = ConsoleColor.Magenta;
Console.WriteLine("李四是笨笨!");
Console.ResetColor();
}
else
{
Console.WriteLine("张三是笨笨!");
} }
}
}
}
}
7、TCP/IP:网络通讯协议,由网络层的IP协议和传输层的TCP协议组成的,是供已连接因特网的计算机进行通信的通信协议。
8、在.net中,我们用TCPClient和TCPListener类来实现点对点通讯,命名空间位于System.Net.Sockets
TcpListener类提供一些简单方法,用于在阻止同步模式下侦听和接受传入连接请求。可以使用TcpClient和Socket来连接TcpListener。可使用IPEndPoint、本地IP地址及端口号或者仅使用端口号,来创建TcpListener。
TcpClient类提供的一些简单方法,用于在同步阻止模式下通过网络来连接、发送、和接收流数据。
以一个简单控制台聊天机器人为例:
服务端: using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.IO;
using System.Threading; namespace Server
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("server");
TcpListener server = new TcpListener(IPAddress.Parse("***.***.***.***"), 9999); //服务端的IP地址
server.Start();
TcpClient clinet = server.AcceptTcpClient();
NetworkStream netstream = clinet.GetStream();
Thread th = new Thread(ReadText);
th.Start(netstream);
StreamWriter swriter = new StreamWriter(netstream);
while (true)
{
Console.WriteLine("---------------------------");
string con = Console.ReadLine();
swriter.WriteLine(con);
swriter.Flush();
Console.WriteLine("服务:" + DateTime.Now);
Console.WriteLine("---------------------------");
}
}
static void ReadText(object o)
{
NetworkStream netstream = o as NetworkStream;
StreamReader sr = new StreamReader(netstream);
while (true)
{
Console.WriteLine("---------------------------");
string con = sr.ReadLine();
Console.WriteLine(con);
Console.WriteLine("客户:" + DateTime.Now);
Console.WriteLine("---------------------------");
} }
}
}
客户端: using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net;
using System.Net.Sockets;
using System.IO;
using System.Threading; namespace Client
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("client");
TcpClient client = new TcpClient("***.***.***.***", 9999); //服务端的IP地址
NetworkStream netstream = client.GetStream();
StreamWriter swriter = new StreamWriter(netstream);
Thread th = new Thread(ReadText);
th.Start(netstream);
while (true)
{
Console.WriteLine("---------------------------");
string con = Console.ReadLine();
swriter.WriteLine(con);
swriter.Flush();
Console.WriteLine("客户:" + DateTime.Now);
Console.WriteLine("---------------------------");
} }
static void ReadText(object o)
{
NetworkStream netstream = o as NetworkStream;
StreamReader sr = new StreamReader(netstream);
while (true)
{
string con = sr.ReadLine();
Console.WriteLine("---------------------------");
Console.WriteLine(con);
Console.WriteLine("服务:" + DateTime.Now);
Console.WriteLine("---------------------------");
} }
}
}
这是一个一对一的聊天程序,大家可以结合以前学过的知识实现多对多的聊天程序。 本文出自 “大懒丫头” 博客,请务必保留此出处http://lanyatou.blog.51cto.com/3306130/624863

.NET Framework基础知识(二)(转载)的更多相关文章

  1. RabbitMQ基础知识(转载)

    RabbitMQ基础知识(转载) 一.背景 RabbitMQ是一个由erlang开发的AMQP(Advanced Message Queue )的开源实现.AMQP 的出现其实也是应了广大人民群众的需 ...

  2. java 基础知识二 基本类型与运算符

    java  基础知识二 基本类型与运算符 1.标识符 定义:为类.方法.变量起的名称 由大小写字母.数字.下划线(_)和美元符号($)组成,同时不能以数字开头 2.关键字 java语言保留特殊含义或者 ...

  3. 菜鸟脱壳之脱壳的基础知识(二) ——DUMP的原理

    菜鸟脱壳之脱壳的基础知识(二)——DUMP的原理当外壳的执行完毕后,会跳到原来的程序的入口点,即Entry Point,也可以称作OEP!当一般加密强度不是很大的壳,会在壳的末尾有一个大的跨段,跳向O ...

  4. Dapper基础知识二

    在下刚毕业工作,之前实习有用到Dapper?这几天新项目想用上Dapper,在下比较菜鸟,这块只是个人对Dapper的一种总结. 2,如何使用Dapper?     首先Dapper是支持多种数据库的 ...

  5. python基础知识(二)

    python基础知识(二) 字符串格式化 ​ 格式: % 类型 ---- > ' %类型 ' %(数据) %s 字符串 ​ print(' %s is boy'%('tom')) ----> ...

  6. .NET Framework基础知识总结

    之前给大家总结了java的面试几次技巧总结,同学们看了觉得还是不错,能够得到大家的认可,感觉还是挺不错的.现在又有同学来想小编索要.NET面试的总结了,好吧.谁让小编这么好呢!以下是.NET面试之框架 ...

  7. Java基础知识二次学习--第三章 面向对象

    第三章 面向对象   时间:2017年4月24日17:51:37~2017年4月25日13:52:34 章节:03章_01节 03章_02节 视频长度:30:11 + 21:44 内容:面向对象设计思 ...

  8. Java基础知识二次学习-- 第一章 java基础

    基础知识有时候感觉时间长似乎有点生疏,正好这几天有时间有机会,就决定重新做一轮二次学习,挑重避轻 回过头来重新整理基础知识,能收获到之前不少遗漏的,所以这一次就称作查漏补缺吧!废话不多说,开始! 第一 ...

  9. 快速掌握JavaScript面试基础知识(二)

    译者按: 总结了大量JavaScript基本知识点,很有用! 原文: The Definitive JavaScript Handbook for your next developer interv ...

随机推荐

  1. sql之group by的用法

    1.概述 “Group By”从字面意义上理解就是根据“By”指定的规则对数据进行分组,所谓的分组就是将一个“数据集”划分成若干个“小区域”,然后针对若干个“小区域”进行数据处理. 2.原始表 3.简 ...

  2. BZOJ2329: [HNOI2011]括号修复(Splay)

    解题思路: Replace.Swap.Invert都可以使用Splay完美解决(只需要解决一下标记冲突就好了). 最后只需要统计左右括号冲突就好了. 相当于动态统计最大前缀合和最小后缀和. 因为支持翻 ...

  3. django 简单会议室预约(4)

    基本的配置已经完成了,来看看最重要的views.py 先看看简单的注册登录功能,在django里有一个专门的模块用来验证用户信息 :所以只需要调用就好了: #-*-coding:utf-8 -*- f ...

  4. 洛谷 P1626 象棋比赛

    P1626 象棋比赛 题目描述 有N个人要参加国际象棋比赛,该比赛要进行K场对弈.每个人最多参加两场对弈,最少参加零场对弈.每个人都有一个与其他人不相同的等级(用一个正整数来表示). 在对弈中,等级高 ...

  5. Java开源电商项目比較

    这里比較的都是国外的开源项目,备选项目有: Smilehouse Workspace.Pulse.Shopizer.ofbiz.bigfish.broadleaf 1.Smilehouse Works ...

  6. eclipse中导入zico Maven项目

    zico源代码地址:https://github.com/jitlogic/zico 简单的说,git上同步的源代码需要先进行maven编译,然后导入eclipse. 如果没有配置好maven,请参考 ...

  7. bootstrap课程11 模态框如何使用

    bootstrap课程11 模态框如何使用 一.总结 一句话总结:多看手册咯. 1.模态框对应的英文单词是什么? modal,而不是madel 2.bootstrap中如何关闭某个效果? 比如要关掉m ...

  8. AVCaptureSession音频视频采集

    // // AudioVideoCaptureViewController.m // live // // Created by lujunjie on 2016/10/31. // Copyrigh ...

  9. VUE笔记 - 品牌后台 - v-for Splice Some Filter findIndex indexOf 直接return函数结果

    <body> <div id="app"> <div class="panel panel-primary"> <di ...

  10. 并发控制MsSql

    Isolation   阅读目录(Content) 1 并发控制理论 1.1 悲观并发控制 1.2 乐观并发控制 2 隔离级别 2.1 隔离级别说明 2.2 Read Commmitted Snaps ...