From 16d41415576117e55a0418978c0350123a46ab5c Mon Sep 17 00:00:00 2001 From: iao113 Date: Sat, 9 Jan 2021 00:56:17 +0800 Subject: [PATCH] Update 04-Operators.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “内存溢出”通常指“堆栈溢出”,算术导致的溢出通常会用“数据溢出”或者“算术溢出”。 --- 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 40ae0a9f..14f8fcf7 100644 --- a/docs/book/04-Operators.md +++ b/docs/book/04-Operators.md @@ -1436,7 +1436,7 @@ public class AllOps { ```java // operators/Overflow.java -// 厉害了!内存溢出 +// 厉害了!数据溢出了! public class Overflow { public static void main(String[] args) { int big = Integer.MAX_VALUE;