From f01ae3dbb2fc26f7b4b0700d1a84ce9306f4da7d Mon Sep 17 00:00:00 2001 From: qbosen Date: Thu, 19 Jul 2018 10:48:08 +0800 Subject: [PATCH] =?UTF-8?q?update=20Java=20=E5=9F=BA=E7=A1=80.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/Java 基础.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/notes/Java 基础.md b/notes/Java 基础.md index af1c6530..bdd13aff 100644 --- a/notes/Java 基础.md +++ b/notes/Java 基础.md @@ -763,10 +763,10 @@ try { ``` ```html -java.lang.CloneNotSupportedException: CloneTest +java.lang.CloneNotSupportedException: CloneExample ``` -以上抛出了 CloneNotSupportedException,这是因为 CloneTest 没有实现 Cloneable 接口。 +以上抛出了 CloneNotSupportedException,这是因为 CloneExample 没有实现 Cloneable 接口。 ```java public class CloneExample implements Cloneable {