 public class Test2
public class Test2


 {
{
 public static void main(String[] args)
    public static void main(String[] args)

 
     {
{
 Float a = new Float(3.4);
        Float a = new Float(3.4);
 System.out.println(a.SIZE);
        System.out.println(a.SIZE);
 a = new Float(34000);
        a = new Float(34000);
 System.out.println(a.SIZE);
        System.out.println(a.SIZE);
 }
    }

 }
}

我们先来看看JDK的解释吧.
 public static final int SIZE
public static final int SIZE
 The number of bits used to represent a float value.
The number of bits used to represent a float value. 
意思是说:通常去描述一个float值的位数.
这个是一个常量,来看看源码吧:
 public static final int SIZE = 32;
 public static final int SIZE = 32;
final int 变量一旦被定义就不能被改变~