LenKIM / everyone-is-effective-java-study

다우기술 연구소 스터디 저장소
8 stars 1 forks source link

Boolean vs boolean #3

Closed LenKIM closed 4 years ago

LenKIM commented 4 years ago

[참고 자료]

https://programming.guide/java/boolean-vs-boolean.html

A Boolean is a class, or a reference type, defined in the standard library. It stores a reference to an object containing a value (a "box"). A boolean on the other hand, is a primitive type and part of the language itself. It stores an actual value. We say that Boolean is the wrapper type for boolean, and objects of type Boolean are boxed values.

Boolean은 클래스이며, reference type이다. 이는 value를 포함하고 있는 object로서 저장됩니다. 반면에, boolean 은 primitive type으로서 언어의 한 부분입니다. 이건 실제 Value로서 저장됩니다.