由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 说说clone咋违反了类继承的原则来的?
相关主题
[合集] 谁能解释一下这里的protected specifierWhere can I find the definition of the method: java.lang.System.getProperties().list()
折腾了一天,实在是绝望了,请教请教copy constructor都什么时候be called啊
java Stringimmutable list
overloading methods[合集] 问一下这个cast在java里是怎么work的
线程hardy会一直等待下去么?传递一个object reference,如何防止更改object?
增加点难度 java coreJava复制object
java这个是什么逻辑?Is there a way to pass by value in Java?
问个primitive type的问题git clones only one branch?
相关话题的讨论汇总
话题: clone话题: object话题: 继承话题: class话题: 违反
进入Java版参与讨论
1 (共1页)
p***t
发帖数: 698
1
Thinking in Java说Object的clone是比较特殊的。意思是违反了类
继承的原则。
clone在Object中是protected的。比如编一个如下的程序:
Public Class B {
public static void main(String[] args) {
A aa = new A();
aa.clone();
}
}
Class A {
}
Suppose应该是A继承Object中这个protected的clone的。这种特殊是
啥个机制呢?
1 (共1页)
进入Java版参与讨论
相关主题
git clones only one branch?线程hardy会一直等待下去么?
what's inside an java object?增加点难度 java core
How to know the size of a java object ?java这个是什么逻辑?
Test your PC speed问个primitive type的问题
[合集] 谁能解释一下这里的protected specifierWhere can I find the definition of the method: java.lang.System.getProperties().list()
折腾了一天,实在是绝望了,请教请教copy constructor都什么时候be called啊
java Stringimmutable list
overloading methods[合集] 问一下这个cast在java里是怎么work的
相关话题的讨论汇总
话题: clone话题: object话题: 继承话题: class话题: 违反