C#複習⑧

来源:http://www.cnblogs.com/zpfbuaa/archive/2016/06/22/5606974.html
-Advertisement-
Play Games

C#複習⑧ 2016年6月22日 13:50 Main Attribute & Threads 屬性與線程 1.Conditional Attribute 條件屬性 斷言僅被調用,如果定義了debug。 Assert is only called, if debug was defined. 還可用 ...


C#複習⑧

2016年6月22日

13:50

Main Attribute & Threads 屬性與線程

1.Conditional Attribute 條件屬性

clip_image002

#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(0);

}

}

static void Main (string[] arg) {

Assert(arg.Length > 0, "no arguments specified");

Assert(arg[0] == "...", "invalid argument");

...

}

}

斷言僅被調用,如果定義了debug。

Assert is only called, if debug was defined.

還可用於控制跟蹤輸出。

Also useful for controlling trace output.

2.Serialization 序列化

clip_image003

3.AttributeUsage

clip_image004

定義自己的Attribute:

clip_image005

4.線程

clip_image006

聲明一個線程:

//假設有方法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 = 0; i < 100; i++) {

Console.Write(ch);

Thread.Sleep(sleepTime);

    }

  }

}

class Test {

static void Main() {

Printer a = new Printer('.', 10);

Printer b = new Printer('*', 100);

new Thread(a.Print).Start();

new Thread(b.Print).Start();

  }

}

6.與Java的不同之處

clip_image008

7.線程的狀態以及相互轉化

clip_image009

using System;

using System.Threading;

class Test {

static void P() {

for (int i = 0; i < 20; i++) {

Console.Write('-');

Thread.Sleep(100);

  }

}

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(0);

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 = 0;

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

舉例:

clip_image010

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.

舉例:

clip_image011

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • ...
  • 迴圈:反覆執行某段代碼。 迴圈四要素:初始條件,迴圈條件,迴圈體,狀態改變。 for(初始條件;迴圈條件;狀態改變) { 迴圈體 } break ——中斷迴圈,跳出整個迴圈 continue——停止本次迴圈,進入下次迴圈。 註:●執行步驟:初始條件——迴圈條件——迴圈體——狀態改變。 ●死迴圈:出不 ...
  • 博問裡面發了幾次了,看的人太少了,回答的人更少,而且都沒有解決,這次發首頁,希望管理手下留情,真心這個問題一個月了,一直沒解決掉。高抬貴手 項目生成成功後,右鍵.tt文件,然後 ,然後調試T4模板成功,就OK瞭然而每次運行自定義工具,就會報錯,應該是Machine config的錯誤,但是一直不會改 ...
  • 這兩天在群里有人咨詢有沒有現成的.net mvc分頁方法,由此寫了一個簡單分頁工具,這裡簡單分享下實現思路,代碼,希望能對大家有些幫助,鼓勵大家多造些輪子還是好的。 A.效果(這裡用了bootstrap的樣式) B.分析,知識點 a.分頁通常由一下幾個屬性組成(當前頁,總條數,分頁記錄數,路由地址) ...
  • 預設是get提交,如果是post提交需要在控制器ActionResult上加:[AcceptVerbs(HttpVerbs.Post)] 舉例: 在HelpController中,會定義如下的Action: [AcceptVerbs(HttpVerbs.Post)] public ActionRes ...
  • 1.最簡單的非同步運行class Program { static void Main(string [] args) { Task.Run(() => { // Task能這麼靈活,也是因為有了Lambda呀。 Console.WriteLine("我是另一個線程:Thread Id {0}", T... ...
  • 我們在前一個練習中已經瞭解瞭如何在C#控制台程式(console)中讀取用戶的輸入。現在我們要學習如何從一個文件中讀取內容。在下麵的練習中,你要格外小心。關於文件的操作,一不小心會損失你的重要文件。 在這個練習中我們首先要創建一個純文本文件ex10_sample.txt 放到c盤的Exercise1 ...
  • 1.時間比較大小 DateTime t1 = new DateTime(100); DateTime t2 = new DateTime(20); if (DateTime.Compare(t1, t2) > 0) Console.WriteLine("t1 > t2"); // t1 大 if ( ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...