We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f394ba0 commit 5cb170eCopy full SHA for 5cb170e
docs/java/basis/java-basic-questions-02.md
@@ -291,7 +291,7 @@ Person person1Copy = person1.clone();
291
System.out.println(person1.getAddress() == person1Copy.getAddress());
292
```
293
294
-从输出结构就可以看出,虽然 `person1` 的克隆对象和 `person1` 包含的 `Address` 对象已经是不同的了。
+从输出结构就可以看出,显然 `person1` 的克隆对象和 `person1` 包含的 `Address` 对象已经是不同的了。
295
296
**那什么是引用拷贝呢?** 简单来说,引用拷贝就是两个不同的引用指向同一个对象。
297
0 commit comments