Java lang Integer.toHexString() 方法及示例
Java .lang.Integer.toHexString() 是Java中的一个内置函数,它以16 进制无符号整数形式返回整数参数的字符串表示形式。该函数接受单个参数作为整数数据类型的参数。
句法 :
public static String toHexString(int num)
Parameter : The function accepts a single mandatory parameter
num - This parameter specifies the number which is to be converted
to a Hexadecimal string. The data-type is int.
返回值:该函数将 int 参数的字符串表示形式返回为以 16 为底的无符号整数。
例子:
Input : 11
Output : b
Input : 12
Output : c
程序1:下面的程序演示了函数的工作。
// Java program to demonstrate working
// of java.lang.Integer.toHexString() method
import java.lang.Math;
class Gfg1 {
// driver code
public static void main(String args[])
{
int l = 234;
// returns the string representation of the unsigned int value
// represented by the argument in binary (base 2)
System.out.println("Hex string is " + Integer.toHexString(l));
l = 11;
System.out.println("Hex string is " + Integer.toHexString(l));
}
}
输出:
Hex string is ea
Hex string is b
程序2 :下面的程序演示了传递负数时的工作函数。
// Java program to demonstrate
// of java.lang.Integer.toHexString() method
// negative number
import java.lang.Math;
class Gfg1 {
// driver code
public static void main(String args[])
{
// when negative number is passed
System.out.println("Hex is " + Integer.toHexString(-10));
}
}
输出:
Hex is fffffff6
错误和异常:每当十进制数或字符串作为参数传递时,它都会返回一条错误消息,上面写着“不兼容的类型”。
程序3:下面的程序演示了传递一个字符串数字时的工作函数。
// Java program to demonstrate
// of java.lang.Integer.toHexString() method
// string number
import java.lang.Math;
class Gfg1 {
// driver code
public static void main(String args[])
{
// when negative number is passed
System.out.println("Hex is " + Integer.toHexString("12"));
}
}
输出:
prog.java:13: error: incompatible types: String cannot be converted to int
System.out.println("Hex is " + Integer.toHexString("12"));
程序4:下面的程序演示了传递小数时的工作函数。
// Java program to demonstrate
// of java.lang.Integer.toHexString() method
// decimal
import java.lang.Math;
class Gfg1 {
// driver code
public static void main(String args[])
{
// when decimal number is passed
System.out.println("Hex is " + Integer.toHexString(12.34));
}
}
输出:
prog.java:13: error: incompatible types: possible lossy conversion from double to int
System.out.println("Hex is " + Integer.toHexString(12.34));