zoukankan      html  css  js  c++  java
  • java整型byte,short,int,long取值范围大小

     byte 1个字节
    short 2个字节
    int 4个字节
    long 8 个字节



    varchar 可变长度的非Unicode数据,最长为8000个字符
    nvarchar 可变长度Unicode数据,最长为4000个字符
    char 固定长度的非Unicode数据,最长为8000个字符
    nchar 固定长度的Unicode数据,最长为4000个字符

    非Unicode字符串的数据类型
    包括char ,varchar,text;
    Unicode字符串的数据类型
    包括nchar ,nvarchar,ntext;

    整型变量 

       
     --------------------------------------------------- 
    byte b;//指定变量b为byte型 (最小值-128 最大值127)
     一个常量,保存 byte 类型可取的最大值,即 2

    7

    -1。(127) 
     一个常量,保存 byte 类型可取的最小值,即 -2

    7

    。(-128)  
     
     --------------------------------------------------- 
     short s;//指定变量s为short型  
     保存 short 可取的最大值的常量,最大值为 2

    15

    -1。(32 767) 
     保存 short 可取的最小值的常量,最小值为 -2

    15

    。(-32 768) 
     
     --------------------------------------------------- 
    int i;//指定变量i为int型 
     值为 2

    31

    -1 的常量,它表示 int 类型能够表示的最大值。 
     值为 -2

    31

     的常量,它表示 int 类型能够表示的最小值。 
     
     --------------------------------------------------- 
     long l;//指定变量l为long型 
     保持 long 类型的最大值的常量,该值为 2

    63

    -1。 
     保持 long 类型的最小值的常量,该值为 -2

    63

     
     ---------------------------------------------------
  • 相关阅读:
    强制重置管理员密码
    Leetcode-Wildcard Matching
    Leetcode-Merge Intervals
    Leetcode-Insert Interval
    Leetcode-Recover BST
    Leetcode-Validate BST
    Leetcode-Same Tree
    Leetcode-Symmetric Tree
    Leetcode-Construct Binary Tree from inorder and postorder travesal
    Leetcode-Binary Tree Level Order Traversal II
  • 原文地址:https://www.cnblogs.com/chengbao/p/4783023.html
Copyright © 2011-2022 走看看