首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java相关 >

JavaDoc中怎么写表格型的注释

2012-04-04 
JavaDoc中如何写表格型的注释/** * @brief parseSegment * split and trim the one String[] into two Str

JavaDoc中如何写表格型的注释
/**
* @brief parseSegment
* split and trim the one String[] into two String[]s.
* if the position beyond the string's length, "" will be padded.

* As showed below:
* String [] = {
* "Rx : Bx:",
* "Drop :",
* ""
* }
* position firstLine secondLine
* 3 "Rx :""Bx:"
* "Drop" ":"
* "" ""
* =================================
* 5 "Rx :""Bx:"
* "Drop :" ""  
* "" ""
* =================================
* 6 "Rx :""Bx:"
* "Drop :" ""  
* "" ""
*  

想要上述这种,但是最后却是:


@brief
parseSegment split and trim the one String[] into two String[]s. if the position beyond the string's length, "" will be padded. As showed below: String [] = { "Rx : Bx:", "Drop :", "" } position firstLine secondLine 3 "Rx :" "Bx:" "Drop" ":" "" "" ================================= 5 "Rx :" "Bx:" "Drop :" "" "" "" ================================= 6 "Rx :" "Bx:" "Drop :" "" "" ""


我看官方文档都有上述哪种。怎么才能形成?




[解决办法]
加<br>

热点排行