Java Collections min() MethodThe min() is a Java Collections class method which returns the minimum value for the given inputs. There is two different types of Java min() method which can be differentiated depending on its parameter. These are:
Java Collections min(coll) MethodThe min() method of Java Collections class is used to get the minimum element of the given collection, according to the natural ordering of its elements. Java Collections min(coll, comp) MethodThe min() method of Java Collections class is used to get the minimum element of the given collection, according to the order induced by the specified comparator. SyntaxFollowing is the declaration of min() method: Parameter
Returns
ExceptionsThe min() method throws the following exceptions- ClassCastException- It throws this exception if the collection contains elements that are not mutually comparable (for example, strings and integers). NoSuchElementException- It throws this exception if the collection is empty. Compatibility VersionJava 1.4 and above Example 1Test it NowOutput: Minimum character is: E Example 2Test it NowOutput: Minimum element is: 10 Example 3Test it NowOutput: Min val: -80 Min val in reverse order: 40 Example 4Test it NowOutput: Mininum character is: COBOL Next TopicJava Collections Class |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India