# Java位运算符 **Repository Path**: dingmeikun/JbitOperators ## Basic Information - **Project Name**: Java位运算符 - **Description**: Java位运算符基础操作 - **Primary Language**: Java - **License**: AFL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2020-04-15 - **Last Updated**: 2021-03-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Java位运算符 #### 介绍 Java位运算符基础操作 #### 基础类型 ###### 字节:也叫Byte ###### 位:是bit 1Byte = 8bit #### 基础类型 byte 1字节 = 8bit 0000 0000 short 2字节 = 16bit 0000 0000 0000 0000 int 4字节 = 32bit 0000 0000 0000 0000 0000 0000 0000 0000 long 8字节 = 64bit 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 float 4字节 = 32bit 0000 0000 0000 0000 0000 0000 0000 0000 double 8字节 = 64bit 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 char 2字节 = 16bit 0000 0000 0000 0000 boolean 1字节 = 8bit 0000 0000