long、float、double正常定义时需要加l、f、d;但是它们三个属于基本数据类型,会自动进行转化,所以不会出现编译报错。

        long l = 012;
        float f = -321;
        double d = 322;