Curriculum
Course: Java Basic
Login

Curriculum

Java Basic

Java Home

0/1

Java Introduction

0/1

Java Get Started

0/1

Java Syntax

0/1

Java Comments

0/1

Java Type Casting

0/1

Java Operators

0/1

Java Booleans

0/1

Java Switch

0/1

Java Break / Continue

0/1

Java Errors and Exception

0/1
Text lesson

clone()

Example

Generate a duplicate of a list.

import java.util.ArrayList;

public
class Main {
  
public static void main(String[] args) {
    
ArrayList<String> cars = new ArrayList<String>();
    cars
.add("Volvo");
    cars
.add("BMW");
    cars
.add("Ford");
    cars
.add("Mazda");
   ArrayList cars2 = (ArrayList)cars.clone();
    cars2.set(0, "Toyota");
    System.out.println(cars);
    System.out.println(cars2);
  }
}

Definition and Usage

The clone() method retrieves a duplicate of the ArrayList as an Object.

This operation produces a “shallow” copy, implying that individual objects within the list are not duplicated; rather, the list contains references to the same objects as the original.

Please be aware that due to the return type being Object, it needs to be type casted to an ArrayList for usage, as demonstrated in the example provided above.

Syntax

public Object clone()

Technical Details

Returns:

A duplication of the ArrayList object.