javadoc 只能为 public 和 protected 的成员进行文档注释, private (可以使用 -private 标记)和 包内访问 成员的注释会被忽略; 注释文档用在 类、方法、字段 前。 javadoc命令只能始于 "/**" ,结束于 "*/" 文档标签 嵌入式HTML 以 @ 开头的命令 下面的 @param ,就放在最开头 @param proxy the proxy instance that the method was invoked on 以 @ 开头,包括在 { } 内; 可以出现在 javadoc 注释中的任何地方。 像下面的 {@code Method} * @param method the {@code Method} instance corresponding to * the interface method invoked on the proxy instance. The declaring * class of the {@code Method} object will be the interface that * the method was declared in , which may be a superinterface of the * proxy interface that the proxy class