VOOZH about

URL: https://www.geeksforgeeks.org/java/charset-compareto-method-in-java-with-examples/

⇱ Charset compareTo() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Charset compareTo() method in Java with Examples

Last Updated : 28 Mar, 2019
The compareTo() method is a built-in method of the java.nio.charset compares two charsets with each other. A comparison is done by their canonical names, without regard to case. Syntax:
public final int compareTo?(Charset second)
Parameters: The function accepts a single mandatory parameter second which specifies the charset to be compared with. Return Value: The function returns an integer value which can be negative, positive or zero after comparing both the offsets. Below is the implementation of the above function: Program 1:
Output:
-7
Program 2:
Comment