Java整型常量及其范围
Java中的整型常量主要包括byte、short、int和long四种类型。它们的取值范围分别是:byte为-128到127,short为-32768到32767,int为-2147483648到2147483647,long的范围较大,为-9223372036854775808到9223372036854775807。
Java整型常量及其范围
Java中的整型常量主要包括byte、short、int和long四种类型。它们的取值范围分别是:byte为-128到127,short为-32768到32767,int为-2147483648到2147483647,long的范围较大,为-9223372036854775808到9223372036854775807。