QT 注釋模板

2021-08-15 15:11:21 字數 548 閱讀 8270

qt中注釋一般就有:

1.單行注釋 //

//int a;

//return a+b;

2.多行注釋/**/

void mainwindow::dropevent(qdropevent *event)

3.函式注釋模板注釋

/**

* @brief mainwindow::addmethod 計算兩個數值的和

* @param a 第乙個引數

* @param b 第二個引數

* @return 返回 a+b的值

*/int mainwindow::addmethod(int a, int b)

關於這一種函式注釋方式有種簡便的生成方式:在函式上方輸入/** 然後按下回車,就會自動生成以上模板。

@brief : 對於這個函式的簡單描述

@param  :引數

@return : 返回值

IDEA 方法注釋模板和類注釋模板

1.類注釋模板 在編輯區域輸入你想要注釋的內容,點選應用,再點選儲存,在你建立新的類時就可以自動生成了 2.方法注釋模板 開啟 file setting editor livetemplates 點選右邊上面那個綠色的 號,選擇template group雙擊,然後彈出乙個視窗,起名,然後點選ok ...

eclipse注釋模板

檔案 files 注釋標籤 型別 types 注釋標籤 類的注釋 classname description author comsys date 字段 fields 注釋標籤 fields 用一句話描述這個變數表示什麼 建構函式標籤 建立乙個新的例項 title description 方法 co...

Eclipse Idea Java注釋模板

1.檔案 files 注釋標籤 title package description 用一句話描述該檔案做什麼 author date version v1.0 注意 本內容僅限於xx公司內部傳閱,禁止外洩以及用於其他的商業目 2.型別 types 注釋標籤 類的注釋 classname descri...