MySQL 中的 SmallInt 在 Java 中的对应类型是什么?


short 与 MySQL 的 small int 等价。Java short 占用 2 个字节,范围为 -32768 至 32767,而 MySQL smallint 同样占用 2 个字节,具有相同范围。

以下是 Java 中 short 的示例代码 −

public class SmallIntAsShortDemo {
   public static void main(String[] args) {
      short value = 32767;
      System.out.println(value);
      value = -32768;
      System.out.println(value);
      // value = 32768;
      // System.out.println(value);
   }
}

快照如下 −

这会生成以下输出 −

32767
-32768

这是我们使用EclipseIDE运行的输出快照 −

MySQL smallint 占用 2 个字节,具有相同范围。

更新于: 30-07-2019

2 千次 + 浏览

开启你的职业生涯

通过完成本课程,获取证书

立即开始
广告