Java single line comment:
Code:
var++; // Single line comment
Will comment out anything after the '//'.
Java multi line comment:
Code:
/**********************
This is a multi line comment.
*/
Will comment out the code between '/*' and '*/'.
XML only has multi line comments, though they can be used for single lines.
Code:
<!-- comment here -->
Will comment out the code between '<!--' and '-->'
atb