昨日翻译
“ I have a wonderful network of friends and feel blessed to be surrounded by so many people I love.”
—— Linda Evans
“我在一个很好的朋友网络,能被这么多我爱的人包围,我感到很幸运。”
——琳达 埃文斯
“True love comes quietly, without banners or flashing lights. If you hear bells, get your ears checked.”
—— Erich Segal
2019.07.23问题及解析
下面赋值语句中正确的是?
A.Double double = 3;
B.int i = 0.0;
C.double d = 4.3e30
D.float f = 4.5
java数据进行赋值时,如果不能正确的赋值将会无法通过编译
比如int类型不能直接赋予double型的数据
byte<short<int<long<float<double小的数据类型不可直接赋值
A.double为关键字不能使用,且3为整型无法直接赋值给Double封装类型,错误
B.0.0为double类型,无法赋值给整型变量i,错误
C.double的取值范围为-1.7E-308~1.7E+308,正确
D.4.5为double类型,无法直接赋值给float类型,错误
答案选C
2019.07.25问题
继承——有参构造
public class Test extends Father{
public Test(String s){
System.out.print("T");
}
public static void main(String[] args) {
new Test("M");
}
}
class Father{
public Father(String s){
System.out.print("F");
}
}
上述程序输出的结果为?
A.FT
B.TF
C.M
D.编译错误
重磅推荐
以我手写我心,有位伟人说过,
整理记录是最高效的学习方法。
在这里即可一展所学,
不仅可以与同辈交流
还可与前辈过招
END