یکشنبه ۳۱ فروردین ۹۹ ۱۶:۱۹ ۴۶ بازديد
كامنت مرسوم /*…….*/
اين يك كامنت چند خطه است كه مي تواند چندين خطه باشد. كامپايلر جاوا همه چيز را از /* تا */ ناديده مي گيرد. مثلا،
- /* 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.