Vous êtes sur la page 1sur 1

Eclipse shortcuts

public class HelloWorld {


//write main and press ctrl + space to get whole main method
public static void main(String[] args) {
//write sysout ctrl + space to get
System.out.println("HelloWorld");
BigDecimal bigDecimal = new BigDecimal(500.1);

BigDecimal bigDecimal2 = new BigDecimal(500.1);


//type syserr then press ctrl + space
System.err.println();
//type fore then press ctrl + space
for (String string : args) {

}
/*ctrl + space,ctrl + 1,ctrl + shift + R(and T)
F3(gotoDeclaration)
* F4 type hierarchy ,ctrl + shift + l
*/

Vous aimerez peut-être aussi