Java 中与 MySQL 的 smallint 等价的是什么?

mysqlmysqli database

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 个字节,范围相同。


相关文章