Caller와 Callee 함수가 다른 함수를 호출하는 상황 Caller : 호출하는 함수 Callee : 호출 당하는 함수 함수형 인터페이스 함수형 인터페이스는 호출한 쓰레드에서 실행된다. @Slf4j public class p030_FunctionalInterfaceExample { public static void main(String[] args) { var consumer = getConsumer(); consumer.accept(1); var consumerAsLambda = getConsumerAsLambda(); consumerAsLambda.accept(1); handleConsumer(consumer); } public static Consumer getConsumer() { Consu..
1. Chrome 확장 프로그램 설치 https://chrome.google.com/webstore/detail/%EB%B0%B1%EC%A4%80%ED%97%88%EB%B8%8Cbaekjoonhub/ccammcjdkpgjmcpijpahlehmapgmphmk?hl=en&authuser=0 백준허브(BaekjoonHub) Automatically integrate your BOJ submissions to GitHub chrome.google.com 2. [Add to Chrome] 버튼 클릭 3. [확장 프로그램 추가] 버튼 클릭 4. 크롬 우측에 확장프로그램 아이콘 선택 5. 고정 6. 5번 고정 이후, 크롬 우측 상단에 확장프로그램 옆에 백준허브 아이콘 선택 7. 뜨는 팝업에 [Authenticate]..
Webstorm 프로젝트 생성 File-New-Project 클릭하여 아래 Empty Project를 원하는 경로에 생성한다. Hexo 설치 1) hexo 설치 npm install hexo-cli -g 2) 셋팅 hero init 폴더명 cd 폴더명 npm install 3) hexo 배포를 위한 설치 npm insatll hexo-deployer-git --save 테마 적용 (next) 1) git submodule 적용 git submodule add https://github.com/theme-next/hexo-theme-next themes/next 2) 변경사항 푸쉬 방법 1) cd themes\next# 테마 경로로 이동 git add . git commit -m "커밋메세지" 2) cd ..
git branch 목록 조회 git branch git branch 생성 git branch 브랜치명 git branch 생성 후 해당 branch로 이동 git checkout -b 브랜치명 git branch 삭제 git branch -d 브랜치명 git branch명 수정 git branch -m 기존 브랜치명 수정할 브랜치명 Git 원격 저장소 URL 을 변경 git remote set-url origin 변경할 URL Git 원격 저장소 URL 을 조회 git remote -v