Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

java comment many line

//This is single line comment  

/* 
This is  
multi line comment 
*/  
Comment

JAVA Multi-line Comment

/* This is an example of  multi-line comment.
 * The program prints "Hello, World!" to the standard output.
 */

class HelloWorld {
    public static void main(String[] args) {

        System.out.println("Hello, World!");
    }
}
Comment

Java Single-line Comment

// "Hello, World!" program example
 
class Main {
    public static void main(String[] args) {    	
        // prints "Hello, World!"
        System.out.println("Hello, World!");
    }
}
Comment

PREVIOUS NEXT
Code Example
Java :: Labeled continue Statement Java 
Java :: python to java convert online 
Java :: javafx.controls,javafx.fxml caused by: java.lang.classnotfoundexception: javafx.controls,javafx.fxml 
Java :: non access modifiers in java 
Java :: what happens if you return only -1 and 1bute not 0 java 
Java :: how to insert a char at n position java 
Java :: Java Numbers and Strings 
Java :: Java array with objects from different types 
Java :: correct lcd initialize 
Java :: jumping sequence java boolean values 
Java :: kotless scheduled event 
Java :: amstrong 
Java :: java structure 
Java :: hashmap declare and initialize with values in 1 line java 
Java :: query spring boot 
Java :: java find duplicates in array 
Java :: java.lang.stringindexoutofboundsexception: string index out of range: 10 
Java :: adding an element to the end of a linked list java 
Java :: java @override 
Java :: resultset methods in jdbc 
Java :: start an activity in adapter 
Java :: input 3 int 1 line in java 
Java :: android cella 20*20 java 
Java :: java scanner tokens with withespace 
Sql :: fatal error: libpq-fe.h: No such file or directory 
Sql :: how to install mysql ubuntu 
Sql :: doublon sql 
Sql :: oracle columns in all_tables 
Sql :: search stored procedures 
Sql :: to date oracle with time 
ADD CONTENT
Topic
Content
Source link
Name
8+9 =