icloneable.java

来自「JGAP是一种遗传算法和遗传规划的组成部分提供了一个Java框架。它提供了基本的」· Java 代码 · 共 20 行

JAVA
20
字号
package org.jgap.util;

/**
 * Interface introducing the clone method that should already be there with
 * java.lang.Cloneable!
 *
 * @author Klaus Meffert
 * @since 3.1
 */
public interface ICloneable
    extends Cloneable {
  /** String containing the CVS revision. Read out via reflection!*/
  final static String CVS_REVISION = "$Revision: 1.3 $";

  /**
   * @return clone of the current object instance
   */
  Object clone();
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?