From 3ba9f9af4c27e9279f8dd7317148d343c2289d84 Mon Sep 17 00:00:00 2001 From: chong-xiaowu <54967084+chong-xiaowu@users.noreply.github.com> Date: Wed, 2 Sep 2020 16:04:38 +0800 Subject: [PATCH] =?UTF-8?q?10101111=E6=94=B9=E4=B8=BA01111111=20(#561)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: lyc --- docs/book/04-Operators.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/04-Operators.md b/docs/book/04-Operators.md index 626cc34..40ae0a9 100644 --- a/docs/book/04-Operators.md +++ b/docs/book/04-Operators.md @@ -494,7 +494,7 @@ public class Literals { char c = 0xffff; // 最大 char 型16进制值 System.out.println( "c: " + Integer.toBinaryString(c)); - byte b = 0x7f; // 最大 byte 型16进制值 10101111; + byte b = 0x7f; // 最大 byte 型16进制值 01111111; System.out.println( "b: " + Integer.toBinaryString(b)); short s = 0x7fff; // 最大 short 型16进制值