1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-08-10 00:41:37 +08:00

Compare commits

...

4 Commits

Author SHA1 Message Date
Guide
e5f022d569
Merge pull request #2027 from kiteeel/chore/correction_of_incorrect_nouns
chore: correction of incorrect nouns.
2023-05-25 08:36:40 +08:00
Guide
ece7053fa6
Merge pull request #2028 from cxrwy/main
Update java-basic-questions-02.md
2023-05-25 08:36:13 +08:00
cxrwy
5cb170e68a
Update java-basic-questions-02.md
修改错别字
2023-05-23 17:04:28 +08:00
kite
e3aeaea2ea chore: correction of incorrect nouns. 2023-05-23 14:31:28 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ category: 高可用
### 1.4 运维人员
运维人员会倾向于根据基础设施和资源的利用率来判断网站的性能,比如我们的服务器资源使用是否合理、数据库资源是否存在滥用的情况、当然,这是传统的运维人员,现在 Devpos 火起来后,单纯干运维的很少了。我们这里暂且还保留有这个角色。
运维人员会倾向于根据基础设施和资源的利用率来判断网站的性能,比如我们的服务器资源使用是否合理、数据库资源是否存在滥用的情况、当然,这是传统的运维人员,现在 Devops 火起来后,单纯干运维的很少了。我们这里暂且还保留有这个角色。
## 二 性能测试需要注意的点

View File

@ -291,7 +291,7 @@ Person person1Copy = person1.clone();
System.out.println(person1.getAddress() == person1Copy.getAddress());
```
从输出结构就可以看出,`person1` 的克隆对象和 `person1` 包含的 `Address` 对象已经是不同的了。
从输出结构就可以看出,`person1` 的克隆对象和 `person1` 包含的 `Address` 对象已经是不同的了。
**那什么是引用拷贝呢?** 简单来说,引用拷贝就是两个不同的引用指向同一个对象。