کامنت مرسوم /*…….*/
این یک کامنت چند خطه است که می تواند چندین خطه باشد. کامپایلر جاوا همه چیز را از /* تا */ نادیده می گیرد. مثلا،
- /* This is a multi-line comment.
- * The problem prints “Hello, World!” to the standard output.
- */
- class HelloWorld {
- public static void main(String[] args) {
- {
- System.out.println(“Hello, World!”);
- }
- }
- }
در کد بالا کامنت برابر است با:
/* This is a multi-line comment.
* The problem prints “Hello, World!” to the standard output.
- ۹۹/۰۲/۰۴