C#复习⑧
C#复习⑧
2016年6月22日
13:50
Main Attribute & Threads 属性与线程
1.Conditional Attribute 条件属性
- #define debug // preprocessor directive
- class C {
- [Conditional("debug")] // only possible for void methods
- static void Assert (bool ok, string errorMsg) {
- if (!ok) {
- Console.WriteString(errorMsg);
- System.Environment.Exit();
- }
- }
- static void Main (string[] arg) {
- Assert(arg.Length > , "no arguments specified");
- Assert(arg[] == "...", "invalid argument");
- ...
- }
- }
断言仅被调用,如果定义了debug。
Assert is only called, if debug was defined.
还可用于控制跟踪输出。
Also useful for controlling trace output.
2.Serialization 序列化
3.AttributeUsage
定义自己的Attribute:
4.线程
声明一个线程:
- //假设有方法void M(){}
- Thread t = new Thread(M);
- t.Start(); //线程执行
5.Type类型
- public sealed class Thread {
- public static Thread CurrentThread { get; } // static properties and methods
- public static void Sleep(int milliSeconds) {...}
- ...
- public Thread(ThreadStart startMethod) {...} // thread creation
- public string Name { get; set; } // properties
- public ThreadPriority Priority { get; set; }
- public ThreadState ThreadState { get; }
- public bool IsAlive { get; }
- public bool IsBackground { get; set; }
- ...
- public void Start() {...} // methods
- public void Suspend() {...}
- public void Resume() {...}
- public void Join() {...} // t.Join(): caller waits for t to die
- public void Abort() {...} // throws ThreadAbortException
- public void Interrupt() {...} // callable in WaitSleepState
- ...
- }
- public delegate void ThreadStart(); // parameterless void method
- public enum ThreadPriority {Normal, AboveNormal, BelowNormal, Highest, Lowest}
- public enum ThreadState {Unstarted, Running, Suspended, Stopped, Aborted, ...}
举例:
- using System;
- using System.Threading;
- class Printer {
- char ch;
- int sleepTime;
- public Printer(char c, int t) {ch = c; sleepTime = t;}
- public void Print() {
- for (int i = ; i < ; i++) {
- Console.Write(ch);
- Thread.Sleep(sleepTime);
- }
- }
- }
- class Test {
- static void Main() {
- Printer a = new Printer('.', );
- Printer b = new Printer('*', );
- new Thread(a.Print).Start();
- new Thread(b.Print).Start();
- }
- }
6.与Java的不同之处
7.线程的状态以及相互转化
- using System;
- using System.Threading;
- class Test {
- static void P() {
- for (int i = ; i < ; i++) {
- Console.Write('-');
- Thread.Sleep();
- }
- }
- static void Main() {
- Thread t = new Thread(P);
- Console.Write("start");
- t.Start();
- t.Join(); // waits until t has finished
- Console.WriteLine("end");
- }
- }
- //Output
- // start--------------------end
- using System; using System.Threading;
- class Test {
- static void P() {
- try {
- try {
- try {
- while (true) ;
- } catch (ThreadAbortException) { Console.WriteLine("-- inner aborted"); }
- } catch (ThreadAbortException) { Console.WriteLine("-- outer aborted"); }
- } finally { Console.WriteLine("-- finally"); }
- }
- static void Main(string[] arg) {
- Thread t = new Thread(P);
- t.Start(); Thread.Sleep();
- t.Abort(); t.Join(); Console.WriteLine("done");
- }
- }
- /*Output
- -- inner aborted
- -- outer aborted
- -- finally
- done*/
8.互斥Mutual Exclusion
一次只能有一个线程掌握着该锁。直到该锁被释放才能被其他线程调用。
举例:
- class Account { // this class is a monitor
- long val = ;
- public void Deposit(long x) {
- lock (this) { val += x; } // only 1 thread at a time may execute this statement
- }
- public void Withdraw(long x) {
- lock (this) { val -= x; }
- }
- }
锁可以加在任何类型上:
object semaphore = new object();
...
lock (semaphore) { ... critical region ... }
9.Wait and Pulse
- Monitor.Wait(lockedVar); // 大致等于wait() in Java (in Java lockedVar is always this)
- Monitor.Pulse(lockedVar); //大致等于 notify() in Java
- Monitor.PulseAll(lockedVar); // 大致等于 notifyAll() in Java
举例:
PulseAll(v)唤醒所有等待的线程的V,但其中只有一个是允许继续。其他线程必须等待,直到前一个释放了锁。然后,下一个线程可能进入执行。
PulseAll(v) wakes up all threads that wait for v, but only one of them is allowed to continue. The others must wait until the previous one has released the lock. Then the next thread may enter the critical region.
举例:
C#复习⑧的更多相关文章
- iOS总结_UI层自我复习总结
UI层复习笔记 在main文件中,UIApplicationMain函数一共做了三件事 根据第三个参数创建了一个应用程序对象 默认写nil,即创建的是UIApplication类型的对象,此对象看成是 ...
- vuex复习方案
这次复习vuex,发现官方vuex2.0的文档写得太简略了,有些看不懂了.然后看了看1.0的文档,感觉很不错.那以后需要复习的话,还是先看1.0的文档吧.
- 我的操作系统复习——I/O控制和系统调用
上篇博客介绍了存储器管理的相关知识——我的操作系统复习——存储器管理,本篇讲设备管理中的I/O控制方式和操作系统中的系统调用. 一.I/O控制方式 I/O就是输入输出,I/O设备指的是输入输出设备和存 ...
- 复习(1)【Maven】
终于开始复习旧知识了,有输入必然要有输出.输入和输出之间的内化过程尤为重要,在复习的同时,真正把学到的东西积淀下来,加深理解. Maven项目概念与配置 Maven是一个项目管理和综合工具.Maven ...
- 《CSS权威指南》基础复习+查漏补缺
前几天被朋友问到几个CSS问题,讲道理么,接触CSS是从大一开始的,也算有3年半了,总是觉得自己对css算是熟悉的了.然而还是被几个问题弄的"一脸懵逼"... 然后又是刚入职新公司 ...
- JS复习--更新结束
js复习-01---03 一 JS简介 1,文档对象模型 2,浏览器对象模型 二 在HTML中使用JS 1,在html中使用<script></script>标签 2,引入外部 ...
- jQuery 复习
jQuery 复习 基础知识 1, window.onload $(function(){}); $(document).ready(function(){}); 只执行函数体重的最后一个方法,事 ...
- jQuery5~7章笔记 和 1~3章的复习笔记
JQery-05 对表单和表格的操作及其的应用 JQery-06 jQuery和ajax的应用 JQery-07 jQuery插件的使用和写法 JQery-01-03 复习 之前手写的笔记.实在懒得再 ...
- HTML和CSS的复习总结
HTML(Hypertext Markup Language)超文本标记语言:其核心就是各种标记!<html> HTML页面中的所有内容,都在该标签之内:它主要含<head>和 ...
- 2017年1月1日 java学习第二天复习
今天是新年的第一天,以前学习没有总结习惯,学习效率和成果都很不好. 学习的过程就是反复的复习和不断学习的过程,开始今天的学习总结 学习java的第二天. 今天学习了java最基础的一些内容,照着 ...
随机推荐
- [开源 .NET 跨平台 数据采集 爬虫框架: DotnetSpider] [三] 配置式爬虫
[DotnetSpider 系列目录] 一.初衷与架构设计 二.基本使用 三.配置式爬虫 四.JSON数据解析与配置系统 上一篇介绍的基本的使用方式,虽然自由度很高,但是编写的代码相对还是挺多.于是框 ...
- MS SQL Server带有时间的记录怎样查询
比如某一张表[A]有一个保存日期包含时间字段[B],如果以这个段[B]作查询条件对数据记录进行查询.也我们得花些心思才能查询到我们想得到的记录. 现在我们需要查询这天2014-06-21的所有记录: ...
- 前端代码标准最佳实践:CSS
前端工程师对写标准的前端代码的重视程度很高.这些最佳标准实践并不是那个权威组织发布的,而是由大量的前端工程师们在实践过程中的经验总结,目的在于提高代码的可读性,可维护性和性能.那么接着上一篇,我们再来 ...
- 使用powerdesigner创建数据库表
(1 )新建概念模型 (2 )新建表,添加表各个属性 填写属性名称和类型,主键要勾选上P,M,D. (3) 如何各个表中有相同的字段名,需要设置Tool->Model Options,把红色区域 ...
- C#编程总结(二)多线程基础
C#编程总结(二)多线程基础 无论您是为具有单个处理器的计算机还是为具有多个处理器的计算机进行开发,您都希望应用程序为用户提供最好的响应性能,即使应用程序当前正在完成其他工作.要使应用程序能够快速响应 ...
- dapper 注意事项之GUID
今天把ef框架换成了dapper,数据库使用的是mysql. 主键使用GUID,mysql数据库中设置的为varchar(36). 使用dapper报错,不能将string转换为GUID,后来调试比对 ...
- 修复 XE8 for Android 分享图片到 Gmail 权限不足的问题
问题:打开 XE8 的 ShareSheet 示例,发布到 Android 实机,按 Share 选 Gmail 结果显示:没有权限添加附件. 适用:XE8 for Android 修复方法: 请将源 ...
- .NET ORM 的 “SOD蜜”--零基础入门篇
PDF.NET SOD框架不仅仅是一个ORM,但是它的ORM功能是独具特色的,我在博客中已经多次介绍,但都是原理性的,可能不少初学的朋友还是觉得复杂,其实,SOD的ORM是很简单的.下面我们就采用流行 ...
- Hibernate 配置 双向 对多关联 (未完待续·······)
从生疏到熟练 是要经历多少遍的练习? 这答案只能向自己找. 以Student和Course为例,一个学生可以选多门课程,一门课程也可以被多个学生选取: 首先 我们创建 ...
- .Net中的并行编程-4.实现高性能异步队列
上文<.Net中的并行编程-3.ConcurrentQueue实现与分析>分析了ConcurrentQueue的实现,本章就基于ConcurrentQueue实现一个高性能的异步队列,该队 ...