生活随笔
收集整理的這篇文章主要介紹了
clone克隆方法
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
克隆方法
要使用clone方法,當前某個對象所在的類必須實現"標記接口"Cloneable(沒有字段(成員變量),也沒有成員方法)
實現這個接口,那么就可以使用Object的clone()方法
public class ObjectDemo {public static void main(String[] args
) throws CloneNotSupportedException{Student s1
= new Student("高圓圓",42) ;System.out
.println(s1
);System.out
.println(s1
.getName()+"---"+s1
.getAge());System.out
.println("-----------------------------------");Object obj
= s1
.clone(); Student s2
= (Student) obj
;System.out
.println(s2
);System.out
.println(s2
.getName()+"---"+s2
.getAge());System.out
.println("-----------------------------------");Student s3
= s1
;System.out
.println(s3
.getName()+"---"+s3
.getAge());}
}
總結
以上是生活随笔為你收集整理的clone克隆方法的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。