IntelliJ IDEA/단축키

[IntelliJ IDEA] 상수로 만드는 단축키 (public static final)

제우제우 2024. 4. 29. 00:31

 

기존 코드 

 new Cookie("lastInteger", "1000000");

 

Ctrl + Alt + C

 

변경 

public static final String LAST_INTEGER = "lastInteger"; // ctrl + alt + c

new Cookie(LAST_INTEGER, "1000000");