Open In App

StringCharacterIterator clone() method in Java with Examples

Improve
Improve
Like Article
Like
Save
Share
Report

The clone() method of java.text.StringCharacterIterator class in Java is used to clone this StringCharacterIterator. It means that this method will create another instance of StringCharacterIterator with all the properties the same as this StringCharacterIterator and return it.

Syntax:

public Object clone()

Parameter: This method do not accept any parameter.

Return Value: This method returns an Object which is the clone of this StringCharacterIterator.

Exception: This method do not throw any Exception.

Program:




// Java program to demonstrate
// the above method
  
import java.text.*;
import java.util.*;
  
public class StringCharacterIteratorDemo {
    public static void main(String[] args)
    {
  
        String text = "GeeksForGeeks";
  
        StringCharacterIterator
            stringCharacterIterator
            = new StringCharacterIterator(text);
  
        System.out.println("Current StringCharacterIterator: "
                           + stringCharacterIterator);
  
        System.out.println("Cloned StringCharacterIterator: "
                           + stringCharacterIterator.clone());
    }
}


Output:

Current StringCharacterIterator:
 java.text.StringCharacterIterator@c11e1b98
Cloned StringCharacterIterator:
 java.text.StringCharacterIterator@c11e1b98

Reference: https://docs.oracle.com/javase/9/docs/api/java/text/StringCharacterIterator.html#clone–


Last Updated : 29 Jul, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads