- 1、本文档共7页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
A)
这个程序会输出什么?
public class Test {
static {
System.out.println(***);
}
public static final String a = sss;
}
public class TestMain {
public static void main(String[] args) {
System.out.println(Test.a);
}
}
如果Test和TestMain写在一个java文件中,那么这段程序是不能运行的,会出错,因为在一个java文件中不能有两个public修饰的类。
如果Test和TestMain是两个独立的java文件,那么这段程序的运行结果是 sss 。
B)
以下程序输出什么
public class TestException {
public int thowSth(){
try{
System.out.println(before throw);
if(true){
throw new Exception();
}
return 0;
}
catch(Exception e){
return 1;
}
finally{
System.out.print(finally);
}
}
}
TextException这个类没有main方法,不能独立的运行,所以不会输出任何信息。
C)
这行代码究竟创建了几个String对象?
String str = new String(abc);
如果在这句代码执行之前,String Pool里面有了”abc”,那么这句代码执行之后,将会创建一个对象,
如果在这句代码只想之前,String Pool里面没有”abc”,那么这句代码执行之后便会创建两个新的对象。
D)
以下代码输出什么?(注意带下划线部分)
class ForTestInherit{
public static int STATIC_A = 0;
public int normal_b = 10;
public void doTest(){
System.out.println(this is parent);
}
}
class ForTestInheritChild extends ForTestInherit{
public static int STATIC_A = 1;
public int normal_b = 11;
public void doTest(){
System.out.println(this is child);
}
}
public class TestInherit {
public static void main(String[] args){
ForTestInherit objParent = new ForTestInherit();
ForTestInherit objChild = new ForTestInheritChild();
System.out.println(ForTestInherit.STATIC_A);
System.out.println(ForTestInheritChild.STATIC_A);
System.out.println(objParent.STATIC_A);
System.out.println(objChild.STATIC_A);
System.out.println(objParent.normal_b);
System.out.println(objChild.normal_b);
objParent.doTest();
objChild.doTest();
}
}
0
1
0
0
10
10
this is parent
this is child
E)
列出java反射机制的一个使用场景(比如,你看到的那些项目的那些功能用到了java反射机制)
举个例子:在用jdbc链接MySql
文档评论(0)