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最基础的一些内容,照着 ...
随机推荐
- SQL_递归查询(复杂查询示例)
需求: 一篇文章里有很多评论,每个评论又有很多回复评论,要求: 页面将文章展示出来,且文章的主评论按照评论时间分页展示,回复评论的评论完全展示在每个主评论下面,且按照回复时间排序 最终查询结果SQL查 ...
- C#编程总结(七)数据加密——附源码
C#编程总结(七)数据加密——附源码 概述 数据加密的基本过程就是对原来为明文的文件或数据按某种算法进行处理,使其成为不可读的一段代码,通常称为“密文”,使其只能在输入相应的密钥之后才能显示出本来内容 ...
- C#读取XML文件的基类实现
刚到新单位,学习他们的源代码,代码里读写系统配置文件的XML代码比较老套,直接写在一个系统配置类里,没有进行类的拆分,造成类很庞大,同时,操作XML的读写操作都是使用SetAttribute和node ...
- MySQL: @variable vs. variable. Whats the difference?
MySQL: @variable vs. variable. Whats the difference? up vote351down votefavorite 121 In another qu ...
- myeclipse中导入的js文件报错(出现红叉叉,提示语法错误)
为了做一个页面特效,导入了一个jquery文件,怎想,myeclipse竟然报错说是语法错误,但是这个js文件我是从官网上下载的,不应该出错才对,百度谷歌之后终于找到了解决办法: 选中报错的js文件, ...
- Oracle数据库,模糊查询、去重查询
分组去重查询,并执行某一个函数 :select 分组字段,聚合函数 from 表名 where 条件 group by分组字段 select 分组字段,聚合函数 from 表名 where 条件 g ...
- java servlet调用带有多个返回结果集的存储过程
一.mysql存储过程 这里我先说下我这个功能实现的逻辑及途中遇到的一些问题.这个存储过程一共带两个输入参数,一共关联到两张表的查询,每个参数都对应查询表中的一个判断,所以一共返回了两个结果集(当然要 ...
- POJ 1811 大素数判断
数据范围很大,用米勒罗宾测试和Pollard_Rho法可以分解大数. 模板在代码中 O.O #include <iostream> #include <cstdio> #inc ...
- Java的对象初始化过程
成员变量(字段)初始化顺序 在一个类里初始化的顺序是由成员变量在类里面的定义的顺序来决定的.即使成员变量大量散布于类的各个方法定义的中间,那些成员变量仍会在调用任何方法之前得以初始化,甚至在构造函数调 ...
- Training - Problem and Change Management
Problem Management Problem management seeks to identify the underlying causes of incidents in an IT ...