当前位置: 技术问答>java相关
有关语法方面的问题,很简单的!共同探讨一下
来源: 互联网 发布时间:2015-08-05
本文导语: 1。 在SL-275中说,浮点数的默认类型是double,但是,为什么float f1=-1,f2=0x0123;能够编译通过?是负数和16进制都默认为float型吗? 2。 局部变量为什么不能够是static类型的? | 1.xuancao(飞云)说...
1。 在SL-275中说,浮点数的默认类型是double,但是,为什么float
f1=-1,f2=0x0123;能够编译通过?是负数和16进制都默认为float型吗?
2。 局部变量为什么不能够是static类型的?
f1=-1,f2=0x0123;能够编译通过?是负数和16进制都默认为float型吗?
2。 局部变量为什么不能够是static类型的?
|
1.xuancao(飞云)说的正确。我改为 float f1=-1.0;后出错,改为float f1=1正确,原因在于:float f1只是声明变量,=为赋值,而-1、1、0x123等为整数故正确,整数向浮点转换不需强制转换的,因此,float f1=(float)1.0;也是正确的。
2.因为static在类初始化时装载,为所有该类对象所共有,而非static的为相应的对象所有,在构造对象时在对象中产生,因此不能用作static,或者你在static中声明static的变量,当然static的函数中是可以有非static变量的,你看main函数(自己想一想就明白了)。
2.因为static在类初始化时装载,为所有该类对象所共有,而非static的为相应的对象所有,在构造对象时在对象中产生,因此不能用作static,或者你在static中声明static的变量,当然static的函数中是可以有非static变量的,你看main函数(自己想一想就明白了)。
|
1.如果值为整数,则类型为int.所以上面的f1=-1,f2=0x0123可以通过编译哦!
|
1.) 编译器自动进行转化 -
double - 可以接受 byte, int, float, long 等类的初始值。
float - byte, int etc.
float f = 0; // OK. - 0 is an int.
float f = 0.0; // Error! - 0.0 is a double!
float f = 0L; // Error! - 0L is a long!
double d = 0L; // OK
2.) Do not mix the 'static' in C funtion with 'static' in Java.
static - in Java, the memeber belong to the class, not the object.
static - in C's funtion, remember the value after function called.
If you want to use something like 'static' in C, the best way to implement this is to use an object variable.
double - 可以接受 byte, int, float, long 等类的初始值。
float - byte, int etc.
float f = 0; // OK. - 0 is an int.
float f = 0.0; // Error! - 0.0 is a double!
float f = 0L; // Error! - 0L is a long!
double d = 0L; // OK
2.) Do not mix the 'static' in C funtion with 'static' in Java.
static - in Java, the memeber belong to the class, not the object.
static - in C's funtion, remember the value after function called.
If you want to use something like 'static' in C, the best way to implement this is to use an object variable.
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。