intelliJ 단축키

Hansu Kim·2022년 1월 30일
0

개발 Must-know

목록 보기
6/9
  • 단축키 검색: command + shift + A
  • 전체검색: shift shift
  • 코드 정렬: command+option+L
  • 코드 범위확장 선택: option+위/아래
  • preference: command+,

  • 주석: command + /
  • go to declaration: command + b
  • 현재구문완성: command+shift+enter
  • 리팩토링: ctrl + t
  • 뒤로가기/앞으로가기: command + [,]

  • 파라미터 옵션 보기 : command + P
  • generator: command + N // ctrl + enter
  • implement method: ctrl + I // option+enter 후 선택
  • 복붙 후 범위리펙토링 : shift + F6
  • introduce variable: command+option+v
    • 추천

  • Extract method: ctrl + T
    • 코드들을 별도 함수로 뽑기
  • 테스트 코드들 뽑기: shift+command+T
    • 클래스 바로 밑에서 (class Member{)
  • 범위 주석 처리: command+option+ /
  • 이전에 실행했던거 그대로 다시 실행: ctrl + R
  • inline 처리 (주로 리턴문 최적화됨) : command+option+N

  • code completion : v
    • 추천
  • run test : ctrl + shift + R
  • 인터페이스의 구현체 탐색 : command + option + B
  • soutm, soutp, soutv : print 메소드명, 파라미터, 변수명/값
  • override methods : ctrl + O

  • 메소드 위치 변경: 메소드명 선언부에서 cmd + shift + 위/아래
  • 메소드로 뽑기: cmd + option + m

0개의 댓글