gpt4 book ai didi

java - Object类中的clone()实现

转载 作者:搜寻专家 更新时间:2023-11-01 04:04:44 24 4
gpt4 key购买 nike

我正在阅读 this文章,它说

Object's clone method is very tricky. It's based on field copies, and it's "extra-linguistic." It creates an object without calling a constructor".

我在 grep code 中看到的所有内容是以下行:

protected native Object clone() throws CloneNotSupportedException;

我在这里错过了什么?

最佳答案

您缺少 native,这意味着它是在非 Java 代码中实现的(在本例中它是在 JVM 本身中实现的)。

那是因为 clone 的确切功能 不能 在 Java 代码中实现(这使得它很成问题)。

关于java - Object类中的clone()实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11346759/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com