Cloneable接口的使用
Posted 聂鲁达
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cloneable接口的使用相关的知识,希望对你有一定的参考价值。
1.implements Cloneable
2.
1 public PortfolioInstrumentMetric clone() { 2 PortfolioInstrumentMetric o = null; 3 try { 4 o = (PortfolioInstrumentMetric) super.clone(); 5 } catch (CloneNotSupportedException e) { 6 e.printStackTrace(); 7 } 8 return o; 9 }
实现接口方法,另外Object clone分为浅克隆和深克隆,后续在写。
以上是关于Cloneable接口的使用的主要内容,如果未能解决你的问题,请参考以下文章