우당탕탕 초보 개발자 되어보기/개발 도움 search

JAVA 공부 키워드

페셜s 2023. 9. 5. 23:26

1. JVM 과 컴파일러 compiler

인간이 쓰는 자연어를

컴퓨터가 아는 기계어 (010101 이진법) 로 번역해주는게 컴파일러

  

JVM과 컴파일러 compiler 는 동일하지 않을 수 있다

- JVM : 기계어(바이트코드)를 아는 애. (하드웨어 H/W 에게 말 전해줌)

- 컴파일러 : 고차원 언어를 저차원 언어 -기계어- 로 변경해주는 애

출처 : https://goateedev.tistory.com/197

 

2. 클래스 AbstractCollection<E>

:

공용추상 클래스

https://docs.oracle.com/javase/8/docs/api/java/util/AbstractCollection.html

 

AbstractCollection (Java Platform SE 8 )

Ensures that this collection contains the specified element (optional operation). Returns true if this collection changed as a result of the call. (Returns false if this collection does not permit duplicates and already contains the specified element.) Col

docs.oracle.com


※ 제가 잘못 이해한 부분 수정 요청은 언제나 환영합니다!  23.09. 05 update ※