**


《手册》 21 页,第八节 注释规约部分对注释规范的要点给出了比较全面的指导 1
【强制】所有类都必须添加创建者和日期。
【强制】所有的枚举类型字段都必须有注释,说明每个数据项的用途。
【推荐】代码修改的同时,注释也要进行相应的修改,尤其是参数、返回值、异常、核心逻辑等修改。
【参考】特殊标记,请注明标记人与标记时间。

我们要思考以下几个问题:

  • 你平时写注释吗?
  • 你知道注释的目的是什么?
  • 有哪些好的注释范例?
  • 为什么会有这些规定?
  • 还有哪些好的规约?

本节将为你解答上述疑问。

**


注释的目的是:辅助读代码的人员更快速的理解代码。
因此我们写注释的时候不管使用何种规约和技巧都要围绕这个目的展开。
这就要求编写注释时,要能够准确描述函数的功能,核心逻辑,潜在风险,注意事项等。
如果注释写地好,即使过了很久自己可以通过注释快速理解代码,也可以帮助团队其他合作的成员快速理解自己的代码,快速找到相关文档,也将方便未来接手自己工作的开发人员。这也是一个优秀程序员专业性的一种体现。

**

**


常规注释主要指普通的注释,比如每个接口几乎都会有的:接口的功能,接口的参数以及含义,接口异常和出现异常的原因,接口的返回值。
首先我们从 JDK 代码注释中寻找灵感。
我们可以参考

  1. ThreadPoolExecutor#ThreadPoolExecutor


构造函数的注释:

  1. /**
  2. * Creates a new {@code ThreadPoolExecutor} with the given initial
  3. * parameters.
  4. *
  5. * @param corePoolSize the number of threads to keep in the pool, even
  6. * if they are idle, unless {@code allowCoreThreadTimeOut} is set
  7. * @param maximumPoolSize the maximum number of threads to allow in the
  8. * pool
  9. * @param keepAliveTime when the number of threads is greater than
  10. * the core, this is the maximum time that excess idle threads
  11. * will wait for new tasks before terminating.
  12. * @param unit the time unit for the {@code keepAliveTime} argument
  13. * @param workQueue the queue to use for holding tasks before they are
  14. * executed. This queue will hold only the {@code Runnable}
  15. * tasks submitted by the {@code execute} method.
  16. * @param threadFactory the factory to use when the executor
  17. * creates a new thread
  18. * @param handler the handler to use when execution is blocked
  19. * because the thread bounds and queue capacities are reached
  20. * @throws IllegalArgumentException if one of the following holds:<br>
  21. * {@code corePoolSize < 0}<br>
  22. * {@code keepAliveTime < 0}<br>
  23. * {@code maximumPoolSize <= 0}<br>
  24. * {@code maximumPoolSize < corePoolSize}
  25. * @throws NullPointerException if {@code workQueue}
  26. * or {@code threadFactory} or {@code handler} is null
  27. */
  28. public ThreadPoolExecutor(int corePoolSize,
  29. int maximumPoolSize,
  30. long keepAliveTime,
  31. TimeUnit unit,
  32. BlockingQueue<Runnable> workQueue,
  33. ThreadFactory threadFactory,
  34. RejectedExecutionHandler handler) {
  35. if (corePoolSize < 0 ||
  36. maximumPoolSize <= 0 ||
  37. maximumPoolSize < corePoolSize ||
  38. keepAliveTime < 0)
  39. throw new IllegalArgumentException();
  40. if (workQueue == null || threadFactory == null || handler == null)
  41. throw new NullPointerException();
  42. this.acc = System.getSecurityManager() == null ?
  43. null :
  44. AccessController.getContext();
  45. this.corePoolSize = corePoolSize;
  46. this.maximumPoolSize = maximumPoolSize;
  47. this.workQueue = workQueue;
  48. this.keepAliveTime = unit.toNanos(keepAliveTime);
  49. this.threadFactory = threadFactory;
  50. this.handler = handler;
  51. }

可以看到该注释先给出了该构造函数的功能说明,然后对每个参数的含义进行解读,然后给出了抛出的异常以及抛出异常对应的具体原因。
正是 JDK 的注释非常专业和详细,才为我们学习源码提供了便利。试想如果没有注释,我们学习和理解源码的速度会不会更慢呢?

**


工具类的注释主要包含:函数的功能,函数的使用范例,函数的参数和返回值描述,该函数出现的起始版本等。
我们选取 commons-lang3 的

  1. StringUtils


类的

  1. StringUtils#isAnyEmpty


函数的源码来学习工具函数的注释。

  1. /**
  2. * <p>Checks if any of the CharSequences are empty ("") or null.</p>
  3. *
  4. * <pre>
  5. * StringUtils.isAnyEmpty((String) null) = true
  6. * StringUtils.isAnyEmpty((String[]) null) = false
  7. * StringUtils.isAnyEmpty(null, "foo") = true
  8. * StringUtils.isAnyEmpty("", "bar") = true
  9. * StringUtils.isAnyEmpty("bob", "") = true
  10. * StringUtils.isAnyEmpty(" bob ", null) = true
  11. * StringUtils.isAnyEmpty(" ", "bar") = false
  12. * StringUtils.isAnyEmpty("foo", "bar") = false
  13. * StringUtils.isAnyEmpty(new String[]{}) = false
  14. * StringUtils.isAnyEmpty(new String[]{""}) = true
  15. * </pre>
  16. *
  17. * @param css the CharSequences to check, may be null or empty
  18. * @return {@code true} if any of the CharSequences are empty or null
  19. * @since 3.2
  20. */
  21. public static boolean isAnyEmpty(final CharSequence... css) {
  22. if (ArrayUtils.isEmpty(css)) {
  23. return false;
  24. }
  25. for (final CharSequence cs : css){
  26. if (isEmpty(cs)) {
  27. return true;
  28. }
  29. }
  30. return false;
  31. }

除了前面提到的功能描述,参数和返回值描述外,该注释部分还给出了常见的使用范例和执行结果,能够帮助读者快速理解函数的用法。
强烈建议我们在编写工具类时参考这种写法,方便使用者的同时也体现了我们的专业水准。

**


正如专栏的 ” 过期类、属性和接口的正确处理方式 “ 小节所讲的:废弃的接口要给出废弃的原因和替代方案等。
我们可以参考下面代码废弃函数的注释:

  1. com.google.common.io.LittleEndianDataOutputStream#writeBytes
  1. /**
  2. * @deprecated The semantics of {@code writeBytes(String s)} are considered dangerous. Please use
  3. * {@link #writeUTF(String s)}, {@link #writeChars(String s)} or another write method instead.
  4. */
  5. @Deprecated
  6. @Override
  7. public void writeBytes(String s) throws IOException {
  8. ((DataOutputStream) out).writeBytes(s);
  9. }

该函数给出了废弃的原因:该函数比较危险。
给出了两个替代方案:

  1. {@link #writeUTF(String s)}, {@link #writeChars(String s)}



从这里我们学到,除了交代废弃的原因和替代方法外,还可以使用

  1. {@link}


提供跳转到替代函数的快捷方式。

**


比如有很多程序员为了方便测试会写一个测试控制器,如

  1. TestController


,来提供 HTTP 接口的控制器,预留一些 “测试后门”,通常会有一个比较好的做法是放到某个特定测试分支,不会带到线上。
如:

  • 提供查看项目的 apollo 配置项是否生效的接口。
  • 提供查看 redis 数据的接口。
  • 提供修复数据的接口。
  • 提供某项功能的开关接口。

那么如果有些接口操作姿势 “非常特别” 或者 “非常危险”,一定要接口上加上注释,防止其他人员误触,导致故障。
如果某个函数仅供内部使用或者仅供某个功能使用,最好可以在注释上加上警示。
这些都极大降低沟通成功,极大降低团队其他成员犯错的几率。

**


开发中特殊注释如:TODO 注释和 FIXME 注释也非常常见。
TODO 注释主要用在本该做还没做的事项。

  • 待斟酌函数的命名。
  • 性能不佳,待后期优化。
  • 开发过程某个功能使用前需要进行权限校验,但是权限校验依赖的新接口对方还没开发好。

此时可以加上 TODO 注释可以参考下面格式:

  1. // TODO:: [xxx功能] 负责人:张三,事项:待添加权限验证逻辑,添加时间:2019-08-25 预计处理时间:2019-09-01

包含功能名称、责任人、事项、添加时间和预处理时间等信息。
我们看看

  1. com.google.common.io.Resources#getResource(java.lang.String)


源码:

  1. /**
  2. * Returns a {@code URL} pointing to {@code resourceName} if the resource is found using the
  3. * {@linkplain Thread#getContextClassLoader() context class loader}. In simple environments, the
  4. * context class loader will find resources from the class path. In environments where different
  5. * threads can have different class loaders, for example app servers, the context class loader
  6. * will typically have been set to an appropriate loader for the current thread.
  7. *
  8. * <p>In the unusual case where the context class loader is null, the class loader that loaded
  9. * this class ({@code Resources}) will be used instead.
  10. *
  11. * @throws IllegalArgumentException if the resource is not found
  12. */
  13. @CanIgnoreReturnValue // being used to check if a resource exists
  14. // TODO(cgdecker): maybe add a better way to check if a resource exists
  15. // e.g. Optional<URL> tryGetResource or boolean resourceExists
  16. public static URL getResource(String resourceName) {
  17. ClassLoader loader =
  18. MoreObjects.firstNonNull(
  19. Thread.currentThread().getContextClassLoader(), Resources.class.getClassLoader());
  20. URL url = loader.getResource(resourceName);
  21. checkArgument(url != null, "resource %s not found.", resourceName);
  22. return url;
  23. }

其中注释的最后两行用到了 TODO 注释,该注释包含了责任人和修改思路。
因此如果有未来优化的思路时,可以通过 TODO 进行注释,在未来代码迭代时实现该注释的想法。

  1. com.google.common.escape.Escapers#wrap


也有一个不错的范例:

  1. private static UnicodeEscaper wrap(final CharEscaper escaper) {
  2. // 省略
  3. if (hiChars != null) {
  4. // TODO: Is this faster than System.arraycopy() for small arrays?
  5. for (int n = 0; n < hiChars.length; ++n) {
  6. output[n] = hiChars[n];
  7. }
  8. } else {
  9. output[0] = surrogateChars[0];
  10. }
  11. // 省略
  12. }

这里表明作者还没有将两者性能进行对比,得到最佳选项。
FIXME 注释,主要用在某些出错代码处,一般是一些不能工作需要及时纠正的错误。
如编写了一处代码,其中部分代码涉及到了计算,但是自测时发现计算结果出错。此时可以参考下面的格式添加 FIXME 注释。在代码上线前一定要修复并验证好相关错误。
示例:

  1. // FIXME:: [xxx功能] 负责人:张三,错误:计算错误,添加时间:2019-08-08 预计处理时间:2019-09-01


**


不知道大家有没有思考过这个问题: 为什么《手册》会有这些规定?
我想这么做的最主要原因是为了帮助读代码的人员快速理解代码。
下面选取几条进行解读:
【强制】方法内部单行注释,在被注释语句上方另起一行,使用 // 注释。方法内部多行注释
使用 / / 注释,注意与代码对齐。
方法内部单行注释,在被注释的语句上方另起一行。主要体现了整体思维,也是为了实现 ” 代码意群 “效应,从视觉上让注释和下面的代码更接近。
【强制】 所有的类都必须添加创建者和创建时间。
类添加了创建者,读者就可以知道第一个创建该类的人(一般是最熟悉的人)是谁,遇到问题可以找他核实。
类添加了创建时间,有助于阅读此代码的人更方便地了解类的编写时间。
另外在这里给出一个技巧:如果我们使用的是 IDEA,并用 GIT 进行代码版本管理,可以在编辑器的左侧行数附近,右键选择 “Annotate”, 可以查看某行代码修改的人和时间。
如果你对该部分代码有疑问,可以快速定位到修改的人和修改时间,对我们协调和解决问题有极大的帮助。

**


【强制】如果代码逻辑和注释不符,必须进行修改
代码逻辑和注释不符,容易让使用者误用,增加出错的概率,容易造成返工降低开发效率。
通常由于开发者理解有误,偶尔会写出了误导性注释,如果发现这类问题一定要认真核实,如果确认是误导性注释,一定要及时修改,避免团队其他成员重复趟坑。
【推荐】 TODO 注释要加上功能名称
为什么特殊注释要加上功能名称?
通常我们会有很多项目的 TODO 注释,但是最常遇到的需求是快速定位正在开发的某个功能的 TODO 注释或者其他某个想修改的功能的 TODO 进行修改。此时如果 TODO 较多且没有标注功能名称,要想找到自己要修改的 TODO 项,通常需要通过搜索自己的姓名来查找,如果 TODO 较多查找起来将非常耗时。
【推荐】方法注释中建议添加相关需求文档,接口文档地址。
很多公司都会有接口平台,开发人员可以将 Dubbo 或 HTTP 接口传到接口平台中,从而得到访问链接,方便前后端对接。
建议将上传的 Dubbo 和 HTTP 接口文档地址顺手加入到注释中,避免每次需要使用时都要手动搜索。

  1. /**
  2. * xxx功能(功能描述)
  3. *
  4. * 需求文档:{@link <a href="http://doc.imooc.com/xxx/process/0001"/>}
  5. * 接口文档:{@link <a href="http://api.imooc.com/xxx/process/0001"/>}
  6. * 对接人员:@张三
  7. *
  8. * @param param 参数描述
  9. * @return 返回值描述
  10. */
  11. public Object something(Object param){
  12. // 1. 查询xx数据
  13. // 2. 过滤yy条件
  14. // 3. 组装结果
  15. }

尤其是对依赖的三方 / 二方接口的封装,大家可以将此接口的相关文档和负责人添加到注释中。
后面自己也可能经常需要找接口的文档链接,开发过程中遇到问题也可及时和对接人沟通,这将极大提供工作效率。
这是一条非常值得推荐的技巧,这种注释风格非常能够体现出一个人的专业素养。
【推荐】容易费解的地方一定要加注释。
自己某块代码的写法很诡异,一定要注明原因。
否则极有可能因为时间久远,后面自己再回头看,或者别人问你为什么这么写,自己都蒙圈了。
导致别人不敢乱改,自己也不敢改动的尴尬情况。
这将是一个非常大的隐患。
【推荐】推荐 git 提交注释的格式为: [功能名称] < 提交类型 > 修改点描述。
很多公司对 git 提交注释的格式有自己的要求, 但是很多公司没有规定,导致大家写的都很随意。
很多人提交的注释都是功能的描述,无法得知因哪个功能做的修改。
建议大家可以养成好的习惯,在提交的描述中增加功能名称,并且能够再添加修改的性质就更好了。
修改的性质包括:新增、删除、修改、修复等。
比如我们独立开发的一个功能,突然中间有一个提交没有带我们的功能名称或功能名称不对,我们可以及时感知到可能出现了问题。
比如我们很久之后发现之前自己对某个函数进行了修改,自己却忘记修改的目的,我们可以查看提交记录,根据注释快速了解到是由于哪个功能导致的修改。
正例:

  1. [a功能] <add> 某某接口
  2. [a功能] <delete> 删除了无用的注释
  3. [a功能] <update> 修改函数命名
  4. [a功能] <fix> 修复了某个错误

大家实践之后就会发现该规约的好处。
【参考】 利用 //——- 或 / —— 分组 — / 注释实现” 方法分组 “

  1. org.apache.commons.lang3.BooleanUtils


工具类中就广泛应用了这种方式:

  1. // Integer to Boolean methods
  2. //-----------------------------------------------------------------------
  3. // 各种整型转布尔类型的函数

再如

  1. java.util.HashMap


中的方法分组注释:

  1. /* ---------------- Static utilities -------------- */

通过方法分组的注释可以很好地实现函数的 ” 分组 “,将类中功能相似的方法放在一起,并使用上述注释进行分割,是一个不错的技巧。
【参考】多写设计的目的,注意事项,不要写从代码显而易见的注释。
很多人喜欢写一些显而易见的注释,导致自己花费了时间对团队其他人却没太大帮助。
如果方法比较复杂,尽量写设计的目的和注意的事项等更有帮助的内容。
反例:

  1. public Boolean isLegal() {
  2. // 如果在售或有库存或有敏感词则返回false
  3. if (isOnSell == null || hasStock == null || hasSensitiveWords == null) {
  4. return false;
  5. }
  6. return isOnSell && hasStock && (!hasSensitiveWords);
  7. }

【参考】 可以将方法的核心逻辑拆分成多个步骤,关键步骤在函数内部可以加上注释并带上序号,之前空一行。
函数内的逻辑注释,将有助于我们养成任务拆解的思维,也有助于自己或团队其他成员快速理解编程的逻辑。
如果核心逻辑的关键步骤加上注释,当代码较长时可以快速帮助读代码的人理解。
这样当代码行数超过 80 行时,开发者也可以根据核心逻辑注释来拆分子函数。
即使不在核心步骤添加注释 (或提取子函数),在核心步骤之间加上一个空格行,方便读者理解。
大家可以在每个大的步骤前加注释,也可以在核心逻辑前将注释分条列举。
可以参考

  1. java.util.concurrent.ThreadPoolExecutor#execute


函数的注释:

  1. /**
  2. * Executes the given task sometime in the future. The task
  3. * may execute in a new thread or in an existing pooled thread.
  4. *
  5. * If the task cannot be submitted for execution, either because this
  6. * executor has been shutdown or because its capacity has been reached,
  7. * the task is handled by the current {@code RejectedExecutionHandler}.
  8. *
  9. * @param command the task to execute
  10. * @throws RejectedExecutionException at discretion of
  11. * {@code RejectedExecutionHandler}, if the task
  12. * cannot be accepted for execution
  13. * @throws NullPointerException if {@code command} is null
  14. */
  15. public void execute(Runnable command) {
  16. if (command == null)
  17. throw new NullPointerException();
  18. /*
  19. * Proceed in 3 steps:
  20. *
  21. * 1. If fewer than corePoolSize threads are running, try to
  22. * start a new thread with the given command as its first
  23. * task. The call to addWorker atomically checks runState and
  24. * workerCount, and so prevents false alarms that would add
  25. * threads when it shouldn't, by returning false.
  26. *
  27. * 2. If a task can be successfully queued, then we still need
  28. * to double-check whether we should have added a thread
  29. * (because existing ones died since last checking) or that
  30. * the pool shut down since entry into this method. So we
  31. * recheck state and if necessary roll back the enqueuing if
  32. * stopped, or start a new thread if there are none.
  33. *
  34. * 3. If we cannot queue task, then we try to add a new
  35. * thread. If it fails, we know we are shut down or saturated
  36. * and so reject the task.
  37. */
  38. int c = ctl.get();
  39. if (workerCountOf(c) < corePoolSize) {
  40. if (addWorker(command, true))
  41. return;
  42. c = ctl.get();
  43. }
  44. if (isRunning(c) && workQueue.offer(command)) {
  45. int recheck = ctl.get();
  46. if (! isRunning(recheck) && remove(command))
  47. reject(command);
  48. else if (workerCountOf(recheck) == 0)
  49. addWorker(null, false);
  50. }
  51. else if (!addWorker(command, false))
  52. reject(command);
  53. }


**


本节如果你只记一句话那就是:注释的目的是让读者更快理解代码的含义 。注释的其他规约都是围绕这一点展开的。
本节讲述了注释的目的,并结合实际的开发经验对注释相关规约进行了解读和补充。
编写恰当的注释是一个程序员专业性的体现,希望大家在编程中能够严格要求自己,能够认真实践好的注释规范,提高开发效率,少趟坑。
下一节将讲述变长参数的奥秘。

**


  1. 阿里巴巴与 Java 社区开发者.《 Java 开发手册 1.5.0》华山版. 2019. 21 ↩︎


11 ArrayList的subList和Arrays的asList学习
13 你真得了解可变参数吗?

精选留言 2
欢迎在这里发表留言,作者筛选后可公开显示


写注释一直是困扰我的事情
1
回复
2020-01-06

回复慕标3246374

哈哈,这篇文章讲的比较详细了,希望可以帮到你。如果还有疑问欢迎随时提问。
回复
2020-01-06 22:32:21

回复明明如月

非常实用 谢谢老师!
回复
2020-01-06 23:58:36


为啥后面的文章都没留言了,作者太忙没有时间筛选吗? 有点冷清啊,建议不筛选了吧,直接放出来
2
回复
2019-12-09

回复letro

这个不是我筛选的哈,是编辑筛选的。 另外很多人买专栏,不太喜欢提问,很多人都是酱紫,哈哈。 如果有小节相关的疑问欢迎提问哈。 如果看到专栏相关的有价值的问题我这里会回复的哈,如果是复杂的问题甚至会写到手记里。
回复
2019-12-11 09:53:00

回复letro

这个专栏真心超值,跟着明月学长 学的也很有成就感。
回复
2019-12-19 11:09:34

回复Seed2009

能够实实在在感受到自己的进步挺好的,加油!! 希望大家通过本专栏不仅学的某个具体的知识点,更重要的是学习和解决问题的方法。