Open In App

CharacterIterator clone() method in Java with Examples

Last Updated : 29 Jul, 2019
Comments
Improve
Suggest changes
276 Likes
Like
Report
The clone() method of java.text.CharacterIterator interface in Java is used to clone this CharacterIterator. It means that this method will create another instance of CharacterIterator with all the properties the same as this CharacterIterator 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 CharacterIterator. Exception: This method do not throw any Exception. Program:
Output:
Current CharacterIterator: java.text.StringCharacterIterator@c11e1b98
Cloned CharacterIterator: java.text.StringCharacterIterator@c11e1b98
Reference: https://docs.oracle.com/javase/9/docs/api/java/text/CharacterIterator.html#clone--

Similar Reads