일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 깃허브
- SQL
- NoSQL
- VMware
- 레디스
- 분할정복
- github
- 동적계획법
- Redis
- 호이스팅
- spring security
- 자바의 정석
- 스프링 부트
- sqld
- Spring Boot
- JPA
- 게시판
- 영속성 컨텍스트
- 이벤트루프
- 스프링 시큐리티
- 정처기
- 스프링부트
- in-memory
- 다이나믹프로그래밍
- 캐시
- MongoDB
- 실행 컨텍스트
- 가상 면접 사례로 배우는 대규모 시스템 설계 기초
- 정보처리기사
- document database
- Today
- Total
목록전체 글 (72)
FreeHand
class A { // 외부 클래스 // 내부 클래스 class B { // 인스턴스 클래스 } static class C { // 스태틱 클래스 } void methodA() { class D { // 지역 클래스 } } } 내부 클래스는 말 그대로 클래스 안의 클래스를 의미한다. class A { int num = 10; } class B { void printA() { A a = new A(); System.out.println(a.num); } } public class Main { public static void main(String[] args) { B b = new B(); b.printA(); // 10 } } B 클래스에서 A 클래스의 멤버를 사용하려면 B 클래스 안에서 A 객체를 생성..

- 관련 용어 정리 Definition of an origin 프로토콜, 포트, 호스트가 같으면 두 URL은 같은 origin을 갖는다. The following table gives examples of origin comparisons with the URS http://store.company.com/dir/page.html URL Outcome Reason http://store.company.com/dir2/other.html Same origin Only the path differs http://store.company.com/dir/inner/another.html Same origin Only the path differs https://store.company.com/page.html ..
변수나 인수이름 뒤에 타입 애너테이션을 붙여서 타입을 정의할 수 있다. 변수 const name: string = 'Jin'; const age: number = 25; 배열 const names: string[] = ['Jin', 'Hana']; const = ages: number[] = [25, 24]; 객체 const user: { name: string, age: number } = { name: 'Jin', age: 25 } 함수 function greeting(name: string): string { return `Hello ${name}`; } const greeting = (name: string): string => `Hello ${name}` 타입 추론(Type Inference) ..