匿名函式:沒有名字的函式;
符號:=> 讀作:goes to
//無參無返回值
action act1=()=>console.writeline("無參無返回值");
act1.invoke();
//有參無返回值
action act2=x=>console.writeline("有參無返回值");
act2.invoke("李四");
//無參有返回值;
funcfunc1=()=>;
int num=func1.invoke();
console.writeline(num);
//有參有返回值;
funcfunc2=(x,y)=>;
int result=func2.invoke(10,20);
console.writeline(result);
CMFCColorButton的使用以及重繪
cmfccolorbutton是visual studio 2008 sp1版本以上提供的顏色採集器。系統環境 windows 7 程式設計環境 visual studio 2008 sp1 下面介紹下使用步驟 1.新建基於對話方塊的工程,名稱為mycolorbuttondemo 2.拖動乙個按鈕到...
NSSortDescriptor使用以及陣列排序
nssortdescriptor 指定用於物件陣列排序的物件的屬性。物件可能是字典,這種情況就是對字典陣列排序 如果是employee物件需要按照name來排序,就生成下面的descriptor nssortdescriptor descriptor nssortdescriptor sortdes...
HandlerThread的使用以及原理
官方的描述 handlerthread 是乙個包含 looper 的 thread,我們可以直接使用這個 looper 建立 handler。handlerthread 的使用場景 我們知道,handlerthread 所做的就是在新開的子執行緒中建立了 looper,那它的使用場景就是 threa...