程序包 weka.core
接口 Copyable
- 所有已知实现类:
Attribute
,BestFirst.LinkedList2
,BinarySparseInstance
,FastVector
,IndividualInstance
,Instance
,JRip.Antd
,JRip.NominalAntd
,JRip.NumericAntd
,JRip.RipperRule
,LFSMethods.LinkedList2
,PrecomputedKernelMatrixKernel
,Rule
,SparseInstance
public interface Copyable
Interface implemented by classes that can produce "shallow" copies
of their objects. (As opposed to clone(), which is supposed to
produce a "deep" copy.)
- 版本:
- $Revision: 1.6 $
- 作者:
- Eibe Frank (eibe@cs.waikato.ac.nz)
-
方法概要
-
方法详细资料
-
copy
Object copy()This method produces a shallow copy of an object. It does the same as the clone() method in Object, which also produces a shallow copy.
-