javadoc MyClass.java格式错误

时间:2018-12-27 21:41:44

标签: java javadoc

我正在尝试为我的课程创建HTML接口,但是我认为与<>格式有关的一些错误。我在使用Java 1.8.0_191的Fedora 28。

我写了javadoc MyStringVector.java并得到以下错误:

MyStringVector.java:53: error: malformed HTML if 0 <= index <= size(), insert the item specified in the location

MyStringVector.java:57: error: malformed HTML if index < 0 o index > size() returns without do nothing

MyStringVector.java:107: error: malformed HTML if 0 <= index < size(), removes the element at the specified index,

MyStringVector.java:189: error: malformed HTML if index < 0 o index >=size() returns null.

如果是格式问题,我必须使用什么转义序列?谢谢!

1 个答案:

答案 0 :(得分:2)

只需转义><这样的字符:

  if 0 &lt;= index &lt;= size()

  if index &lt; 0 o index &gt; size()

对于xml/html格式保留的所有符号,依此类推。