Java의 boolean의 크기는 몇일까? 서론 Java 스터디 중 자료형에 대해 학습하던 중 자료형의 크기를 알아보는 도중이었습니다. 원시 타입 중에 boolean 은 참과 거짓만 판별하면 된다고 하는데 검색하여 찾아보니 1bit의 크기를 가진다고 하는 글도 있고, 1byte의 크기를 가진다고 하는 글도 있다. 도대체 이유가 뭘까? The Java™ Tutorials에 따르면 boolean: The boolean data type has only two possible values: true and false. Use this data type for simple flags that track true/false conditions. This data type represents one bit of i..