zoukankan      html  css  js  c++  java
  • (转载)JAVA中八种基本数据类型的默认值

    原文链接:

      http://simon-c.iteye.com/blog/1016031

    引用

    For type byte, the default value is zero, that is, the value of (byte)0. 
    For type short, the default value is zero, that is, the value of (short)0. 
    For type int, the default value is zero, that is, 0. 
    For type long, the default value is zero, that is, 0L. 
    For type float, the default value is positive zero, that is, 0.0f. 
    For type double, the default value is positive zero, that is, 0.0d. 
    For type char, the default value is the null character, that is, 'u0000'. 
    For type boolean, the default value is false.

    以上摘自《Java Language Specification Second Edition》CHAPTER 4 

    基本类型 默认值
    byte 0
    int 0
    short 0
    long 0L
    float 0.0f
    double 0.0d
    char 'u0000'
    boolean false











  • 相关阅读:
    Google提出的新型激活函数:Swish
    Rosonblatt线性感知器
    Rosonblatt线性感知器
    毕业的到来
    陌生人
    学会感恩
    session和el表达式
    cooking和session
    不離不棄
    生活
  • 原文地址:https://www.cnblogs.com/lichmama/p/5764430.html
Copyright © 2011-2022 走看看