📜  java 示例中的字节数据类型 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:06.513000             🧑  作者: Mango

代码示例1
public class TestingByte {

    public static void main(String[] args) {
        
        byte b = 190; //declare a byte variable and assign the value i.e 10
        System.out.println(b); // print the value of byte variable b

    }

}