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()); } } |
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–