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로서 저장됩니다.
[참고 자료]
https://programming.guide/java/boolean-vs-boolean.html
Boolean은 클래스이며, reference type이다. 이는 value를 포함하고 있는 object로서 저장됩니다. 반면에, boolean 은 primitive type으로서 언어의 한 부분입니다. 이건 실제 Value로서 저장됩니다.