Cloneable的深拷贝与浅拷贝
一、Cloneable是啥 Cloneable是java的一个接口,接口里并没有需要强制实现的方法,因此这是一个标记性接口,实现该方法的同时,还要主动去实现clone方法,否则会抛出CloneNotSupportedException异常。
// BEGIN Android-changed: Use native local helper for clone()
// Checks whether cloning is allowed before calling native local helper.
// protected native Object clone() throws CloneNotSupportedException;
protected Object clone() throws CloneNotSupportedException {
共有 0 条评论