有疑问的代码
/**
* ……
*
* @param deviceNo
* @return
*/
public static EmbeddedChannel createChannel(String deviceNo) {
// ....
}
如果没有特别需要的额外说明,那么 deviceNo 一目了然就是指设备号码,写成 @param deviceNo device no
或 @param deviceNo 设备编号
感觉就是脱裤子放屁。@return
同理。
然而 Google Java Style 只给 getFoo 这种方法做宽松限制,不给 @param @return 做。
Javadoc is optional for "simple, obvious" methods like getFoo, in cases where there really and truly is nothing else worthwhile to say but "Returns the foo".
Javadoc 对于像 getFoo 这样的“简单、明显”的方法是 可选的,在这种情况下除了“返回 foo ”之外真的没有什么值得说的。
Any of the standard "block tags" that are used appear in the order @param, @return, @throws, @deprecated, and these four types never appear with an empty description.
使用的任何标准“块标记”都以 @param、 @return、 @throws、 @deprecated 的顺序出现,并且这四种类型永远不会出现空描述。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.