junho85 / me

about junho85
2 stars 0 forks source link

이펙티브 자바 2판 읽기 - 1장 #14

Closed junho85 closed 8 years ago

junho85 commented 8 years ago

개요

읽다 보니 1장은 그냥 서론이군

annotation 은 어노테이션이라고 적었는데 실제 발음은 에너테이션에 가깝다.

예제 (X) http://java.sun.com/docs/books/effective https://github.com/marhan/effective-java-examples

일단 git clone

자바 언어 명세서 (Java Language Specification) 3판 JLS

https://docs.oracle.com/javase/specs/ 이거랑 같으려나? 그런데 엄청 길군

네 가지 유형의 자료형 interface (annotation 포함) class (enum 포함) array primitive

처음 세가지는 참조 자료형 (reference type)

클래스로 만든 개체(instance)와 배열은 객체(object)

클래스의 멤버(member)로는 필드(field), 메서드(method), 멤버 클래스 (member class), 멤버 인터페이스(member interface)

...