Last active
December 26, 2015 22:18
-
-
Save vyazelenko/7221724 to your computer and use it in GitHub Desktop.
Class that copies itself via copy constructor
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.vyazelenko.blog.copyobject.primitives.constructor; | |
import com.vyazelenko.blog.copyobject.primitives.BaseClass; | |
public class ConstructorCopy extends BaseClass implements Cloneable { | |
public static final ConstructorCopy INSTANCE; | |
static { | |
INSTANCE = new ConstructorCopy(); | |
INSTANCE.init(); | |
} | |
public ConstructorCopy() { | |
super(); | |
} | |
public ConstructorCopy(ConstructorCopy copyFrom) { | |
super(copyFrom); | |
} | |
@Override | |
public ConstructorCopy copy() { | |
return new ConstructorCopy(this); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment