Java Long parseUnsignedLong(String s, int radix) Method
Java parseUnsignedLong(String s,int radix)
method is the part of the Long
class of the java.lang
package. This method is used to parse the string value as an unsigned decimal Long object in the specified integer radix value passed as an argument.
It must be noted that the characters passed in the string must be all decimal except for the first character which is used to define the sign of the integer. The ASCII plus '+' sign is used to depict a positive value.
Syntax:
public static long parseUnsignedLong(String s, int radix)
Parameters:
The parameter passed is the string value whose unsigned decimal Long object is to be returned and the integer radix value according to which the input string will be parsed.
Exception:
NumberFormatException
: This exception occurs when the input string is not parsable.
Returns:
Returns the value as the unsigned decimal Long
object of the String
value passed as a parameter in accordance with the radix value.
Example 1:
Here, the unsigned decimal Long
object representation is returned of the String
value in accordance with the integer radix passed.
import java.lang.Long;
public class StudyTonight {
public static void main(String[] args) throws NumberFormatException {
String s1 = "603";
String s2 = "834";
int radix = 16;
System.out.print("\nEntered value and Base value is: " + s1 + " and " + radix);
//returns the unsigned Long object of the entered string in accordance with the radix
System.out.println("\nEquivalent Long object is " + Long.parseUnsignedLong(s1, radix));
System.out.print("\nEntered value and Base value is: " + s2 + " and " + radix);
//returns the unsigned Long object of the entered string in accordance with the radix
System.out.println("\nEquivalent Long object is " + Long.parseUnsignedLong(s2, radix));
}
}
Entered value and Base value is: 603 and 16
Equivalent Long object is 1539
Entered value and Base value is: 834 and 16
Equivalent Long object is 2100
Example 2:
Here is a user-defined example where anyone using this code can put a value of his choice and get the equivalent output.
import java.util.Scanner;
public class StudyTonight {
public static void main(String[] args) {
try {
System.out.print("Enter the value: ");
Scanner sc = new Scanner(System. in );
String s = sc.nextLine();
System.out.print("Enter the radix: ");
int radix = sc.nextInt();
System.out.println("Equivalent Long object : " + Long.parseUnsignedLong(s, radix)); //parse the string value into unsigned value with respect to radix
}
catch(NumberFormatException e) {
System.out.println("Invalid Input!!");
}
}
}
Enter the value: 645
Enter the radix: 8
Equivalent Long object : 421
************************************
Enter the value: 897
Enter the radix: 16
Equivalent Long object : 2199
************************************
Enter the value: 0x44
Enter the radix: 8
Invalid Input!!
Live Example:
Here, you can test the live code example. You can execute the example for different values, even can edit and write your examples to test the Java code.