top of page

Shortcuts in JAVA (IntelliJ IDEA, NetBeans, Android Studio)

  • Poza scriitorului: oanaunciuleanu
    oanaunciuleanu
  • 10 feb. 2018
  • 1 min de citit

ree

1. Basic complete: CTRL + SPACE


ree

This simple command completes the names of classes, methods, fields, and keywords.


ree

2. Generate: ALT+ INSERT


ree

Using ALT + INSERT will help you generate constructors, getters and setters, override methods, etc.

ree

3. Intention: ALT+ ENTER


ree

With ALT + ENTER , the IDE will show you hints to Improve or optimize a code construct.


ree

4. public static void main(String[] args)


ree

ree

5. System.out.println()


ree

Writing just SOUT and TAB will get the entire line: System.out.println()

ree

6. Declaration of method: CTRL + CLICK


ree

With CTRL + CLICK on the name of a method, you will be sent its declaration.


ree

Postări recente

Afișează-le pe toate
Weighted Job Scheduling in JAVA

You receive a list of jobs that have three elements: start time, finish time and profit. You have to schedule the jobs with no...

 
 
 
Tiling Problem in JAVA

You can use a board that is 2 x n size. The tiles are of size 2 x 1. Count the number of ways to tile the board. Tiles can be placed...

 
 
 

Comments


bottom of page