類裡面的函式,放在類的原型物件上,供例項物件呼叫
class
person
//一般方法
speak()
}
onclick=
通過this這個例項物件獲取handleclick函式
此時handleclick是自己執行的,所以this指向undefined
定義箭頭函式this指向定義時的this,
class
person
}
箭頭函式常用
定義fn=()=>{}
呼叫this.fn
箭頭函式常用
定義handleclick(){}
呼叫onclick=
箭頭函式裡沒有this,this是外部的render
也就是元件的例項物件
構造器內宣告
constructor()
clickhandle(){}
bind繫結
clickhandle(){}
this.clickhandle.bind(this);
委託的多種寫法
一 委託呼叫方式 1.最原始版本 delegate string plusstringhandle string x,string y class program static string plusstring string x,string y 2.原始匿名函式版 去掉 plusstring 方...
Qt connect的多種寫法
自 加 在main函式中寫乙個定時器,並啟動 1 qtimer timer 2 qobject connect timer,qtimer timeout,5 timer.start 500 1 最基本的,4個引數 1 阻塞 2qeventloop loop 3 qobject connect thi...
main函式的多種寫法
int main int argc,char argv int main void 最好main 函式向系統返回乙個整型,表示函式正常結束。我只推薦上面兩種寫法 關於main函式的其他幾種寫法,也列舉出來做比較 void main 我們一般使用這種寫法,第一很多書上也是這樣寫的,第二不要int也能正...