Newer Version Available
Comments
Both single and multiline comments are supported in Apex code.
- To create a single line comment, use //.
All characters on the same line to the right of the // are ignored by the parser. For
example:
1Integer i = 1; // This comment is ignored by the parser - To create a multiline comment, use /* and
*/ to demarcate the beginning and end
of the comment block. For
example:
1Integer i = 1; /* This comment can wrap over multiple 2 lines without getting interpreted by the 3 parser. */