2
我是哈克斯新手,可能這是一個非常基本的問題,我不能真正找到答案。功能新或公共靜態主
我看到三種方式來調用主類:
1)使用的main()
//Entry point
public static main():void{
//do something...
}
2)使用構造函數new()
//Constructor
public function new(){
// init
}
3)使用兩個主( )和新的()
static function main()
{
Lib.window.onload = function(e) new Main();
}
public function new()
{
//init
}
Is there一個人使用的指導方針或最佳做法?
感謝
關於你的第二個額外要點的評論:當你省略-main參數時,haxe編譯器拒絕編譯。它也拒絕編譯一個沒有定義靜態主函數的主函數。 – xastor
@xastor如果您插入類名稱(包括完整的包路徑),它將起作用。我會編輯我的答案以包含該內容。謝謝:) –
甜! Byebye主要存根:) – xastor