I have a need to include `*/` in my JavaDoc comment. The problem is that this is also the same sequence for closing a comment. What the proper way to quote/escape this?
Example:
/**
* Returns true if the specified string contains "*/".
*/
public boolean containsSpecialSequence(String str)
**Follow up**: It appears I can use `/` for the slash. The only downside is that this isn't all that readable when viewing the code directly in a text editor.
/**
* Returns true if the specified string contains "*/".
*/
以上就是How to quote "*/" in JavaDocs的详细内容,更多请关注web前端其它相关文章!