May 1, 2018

How to Avoid Cloning in Java

Cloning is the easiest way of copying a class. With this, however, you also have all properties being passed on to the cloned class, which probably is a security hassle. You can avoid the same with a simple trick as shown below: public class AvoidCloning{public static void main(String args[]){AvoidCloning avoidCloning