목록Dev (117)
Learn & Record

https://mariadb.com/ 1. PRODUCTS > Community Edition > MariaDB Community Server > Download 클릭 2. (Windows 같은 경우) 버전 선택 > OS (MS Windows 64-bit) 선택 > Download 3. 설치파일 실행 4. *중요* 비밀번호 설정 반드시 기억해야 됨 - Use UTF8 ~ 체크 5. (처음 설치 시) TCP port 3306 확인 > 설치

https://git-scm.com/ 접속 1. Download for Windows > Click here to download 2. Next > 설치 (본인은 기본값으로 계속 Next 함) 3. 시작 메뉴 > Git bash 프로그램 실행 4. git 입력 > 사진처럼 명령어 나오면 설치 완료 5. git 설정 $ git config --global user.name "이름" $ git config --global user.email "이메일" 6. git 설정 확인 $ git config --list 7. github 접속 https://github.com/ 8. sign in > 회원가입 9. repository > new 클릭 - Repository name : 저장소 이름 - Descropti..
// 인터페이스 안에서 선언된 메서드는 자동 묵시적으로 public abstract이 적용된다. // public이나 abstract 수식어 없어도 됨 // public : 어떤 패키지의 어떤 클래스도 사용할 수 있다는 것을 의미. 인터페이스는 다른 클래스에 의하여 구현(implement) 될 수 있음 구현 : 인터페이스에 정의된 추상 메서드의 몸체를 정의한다는 의미 인터페이스 구현 시 implement 키워드 사용 package ch_01.day240123; public interface RemoteControl { public void turnOn(); public void turnOff(); } class Television implements RemoteControl { boolean on; @O..