June 2017
Beginner
1296 pages
69h 23m
English
Before HTML files can be generated with the javadoc tool, programmers must insert special comments—called documentation comments—into their source files. Documentation comments are the only comments recognized by javadoc. Documentation comments begin with /** and end with */. Like traditional comments, documentation comments can span multiple lines. An example of a simple documentation comment is
>/** Sorts integer array using MySort algorithm */
Like other comments, documentation comments are not translated into bytecodes. Because javadoc is used to create HTML files, documentation comments can contain HTML tags. For example, the documentation comment
/** Sorts integer array using <strong>MySort</strong> algorithm ...Read now
Unlock full access