using的使用方式

2021-07-30 09:35:01 字數 799 閱讀 9705

1、命名空間

using system.windows;

2、命名空間的別名

using system.windows;

using froms = system.windows.forms;

例如引用:messagebox.show("hello"); 因為在system.windows和system.windows.forms命名空間中都有此類,可通過宣告命名空間的別名來區分使用。

form.messagebox.show("hello");來簡化替代system.windows.forms.messagebox.show("hello");

3、using語句

提供能確保正確使用 idisposable 物件的方便語法。

使用using可以確保並自動呼叫dispose方法

using(sqlconnection sqlconn = new sqlconnection(strconn))

等同於

sqlconnection sqlconn = new sqlconnection(strconn);

tryfinally

一般結合using和try..catch使用,既保證了呼叫dispose方法,也做了異常處理。

try

}catch(sqlexception ex)

using使用到的場景

在此檔案中宣告了std這個標準命名空間,本檔案或者包含本檔案的檔案就可以直接使用std命名空間中的函式 類 變數等。using namespace std include class base protected int m head class derive private base void s...

C 中using 的使用

include using namespace std class classone class classtwo template class classthree private classtype void main 在上面 中,一共有三處使用了using,分別是第3,16,22行,它們的作用...

using使用方法

使用方法 using 語句允許程式設計師指定使用資源的物件應當何時釋放資源。using 語句中使用的物件必須實現 idisposable 介面。此介面提供了 dispose 方法,該方法將釋放此物件的資源。可以在 using 語句之前宣告物件。font font2 new font arial 10...