What is the meaning of @jls in javadoc?

  • @jls 4.3.2. Class object
  • @jls 9.8 Functional Interfaces
  • @jls 9.4.3 UI body
  • @since 1.8 * /

Found this javadoc in some core Java classes, what does this mean? when to use javadoc in writing?

+7
java javadoc
source share
1 answer

@jls points to the Java language specification section.

See for example:

The last annotation in your @since question @since used to indicate the version of Java ( 1.8 , which is Java 8), in which the document class or method was first available.

+8
source share

All Articles