two return types java code example
Example 1: c# return two variables of different types
(string, string, int) LookupName(long id) // tuple return type
{
... // retrieve first, middle and myNum from data storage
return (first, middle, myNum); // tuple literal
}
Example 2: in java how to compare two strings
class scratch{
public static void main(String[] args) {
String str1 = "Nyello";
String str2 = "Hello";
String str3 = "Hello";
System.out.println( str1.equals(str2) ); //prints false
System.out.println( str2.equals(str3) ); //prints true
}
}