How to comment multiple lines in Java?

To comment multiple lines in Java, use this syntax: /* ... */.

Here's how you do it:

/*
This is a multiline comment.
This is the second line.
This is the third line.
*/