관리 메뉴

나만의공간

IntelliJ 기본편 #1 본문

Tools/IntelliJ

IntelliJ 기본편 #1

밥알이 2017. 2. 14. 15:37

IntelliJ 맥북 이전명령 취소 (Command+Z)

이전 명령의 실행을 취소합니다.

IntelliJ 맥북 실행취소 명령을 취소 (Command+Shift+Z)

실행취소 명령을 취소합니다.

IntelliJ Import 단축키 (Option+Enter)

IntelliJ에서 필요한 Class를 자동으로 Import하는 단축키는 (Option+Enter)임.

Import를 하고자 하는 Class에 커서를 옮기고, (Option+Enter)를 입력하면 자동으로 Import가 됨.

1. Import 하기전 화면

import util.BigDecimalUtil;

/**
* Created by we on 2017- 2- 14.
*/
public class BigDecimalSample {
public static void main(String args[]) {

BigDecimal aaa = BigDecimalUtil.add(10,20);
System.out.println(aaa);
}
}


2. BigDecimal Class에 커서 이동후 Option+Enter를 입력한 화면

import util.BigDecimalUtil;

import java.math.BigDecimal;

/**
* Created by we on 2017- 2- 14.
*/
public class BigDecimalSample {
public static void main(String args[]) {

BigDecimal aaa = BigDecimalUtil.add(10,20);
System.out.println(aaa);
}
}

IntelliJ 수정 파일에 '*' 문자 표시하는법

Perferences => Editor => General => Editor Tabs => Mark modified tabs with asterisk 항목 체크   

Perferences => 검색창에 asterisk 검색후 Mark modified tabs with asterisk 항목 체크

IntelliJ Keyboard ShortCuts (TAB)

System.out.println을 자동완성하는 단축키

Eclipse에서 "sysout" CRTL+SPACE

IntelliJ "sout" TAB


 

'Tools > IntelliJ' 카테고리의 다른 글

Intellij Pebble Template 색상 적용  (0) 2022.01.26
Intellij 파일 크기 변경방법  (0) 2021.12.27
IntelliJ 개발 유용한 플러그인 #1  (0) 2021.10.19
단축키  (0) 2017.02.17
IntelliJ 기본편 #2  (0) 2017.02.14
Comments