字节类在 Java 中包含示例
字节类将一个基本类型字节的值封装在对象中。
以下是字节类的字段:
- static byte MAX_VALUE − 这是保存字节能达到的最大值(27-1)的常量。
- static byte MIN_VALUE − 这是保存字节能达到的最小值(-27)的常量。
- static int SIZE − 这是以二进制补码形式表示字节值所需的位数。
- static Class<Byte> TYPE − 这是表示基本类型字节的类实例。
示例
现在让我们看一个示例:
import java.lang.*;
public class Demo {
public static void main(String[] args){
Byte b1, b2;
int i1, i2;
b1 = new Byte("1");
b2 = Byte.MIN_VALUE;
i1 = b1.intValue();
i2 = b2.intValue();
String str1 = "int value of Byte " + b1 + " is " + i1;
String str2 = "int value of Byte " + b2 + " is " + i2;
System.out.println( str1 );
System.out.println( str2 );
}
}输出
这将产生以下输出:
int value of Byte 1 is 1 int value of Byte -128 is -128
示例
现在让我们看另一个示例:
import java.lang.*;
public class Demo {
public static void main(String[] args){
Byte b1, b2;
String s1, s2;
b1 = new Byte("-10");
b2 = Byte.MIN_VALUE;
System.out.println("Number of bits in b1 = "+b1.SIZE );
System.out.println("Number of bits in b2 = "+b2.SIZE );
s1 = b1.toString();
s2 = b2.toString();
String str1 = "String value of Byte " + b1 + " is " + s1;
String str2 = "String value of Byte " + b2 + " is " + s2;
System.out.println( str1 );
System.out.println( str2 );
}
}输出
这将产生以下输出:
Number of bits in b1 = 8 Number of bits in b2 = 8 String value of Byte -10 is -10 String value of Byte -128 is -128
广告
数据结构
网络
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP