如何正確評論c中的方法?如何正確評論c中的方法?
在Java中是否有類似的東西?
/*
*Returns the value of the sin(x)
*
*@param..?
[email protected]?
.
?
?
謝謝您的建議。 比你..
如何正確評論c中的方法?如何正確評論c中的方法?
在Java中是否有類似的東西?
/*
*Returns the value of the sin(x)
*
*@param..?
[email protected]?
.
?
?
謝謝您的建議。 比你..
有作爲「評論有道」沒有這樣的事 - 評論不在乎,而且只要當你滿足編譯器的要求時,他們也不在乎。
你真的在問什麼,我想,是如何評論才能使用一些外部工具(如doxygen)。這不是對語言來說很重要的東西,而是對這個工具來說很重要的 - 而且你需要閱讀你的工具的文檔以瞭解它的期望。
這是我想評論一個函數定義:
/*****************************************************************************
* @brief
* @author
* @date
* @return
* @arg
* @note
*
*****************************************************************************/
看到有兩種類型的註釋
//
單行(簡稱重要信息有關的變量/* */
對於多(主要用於描述)如何使用它
/*
This is a Addition function. It takes two variables of int type and yields the addition of it.
*/
int add(int a, int b){
int c = 0; // Variable to store result
return c;
}
Micr osoft提供了一些指導方針,在http://msdn.microsoft.com/en-us/library/vstudio/ff926074.aspx
最終,就像@馬說的,如果你是項目中唯一的一個,那沒關係。否則,應事先約定某種約定,並堅持爲了可讀性。
C(AFAIK)中沒有方法 – haccks