Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 젠킨스
- Vue
- 티스토리 광고 수익
- Spring
- Vue 알아보기
- 구글 애드센스 수익
- JDK1.3
- docker 명령어
- Vue 배우기
- 미국주식
- gradle
- apache log4j
- IntelliJ
- python 기초
- spring Annotation
- Spring Batch 강의
- MYSQL
- docker
- Vue 강의
- scrapy
- python
- AES256
- intelliJ plugin
- Spring Batch
- 미국 배당주
- 애드센스 수익
- 도커
- Python 기본편
- spring boot 시작
- docker mysql
Archives
나만의공간
IntelliJ 기본편 #1 본문
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