Java十道入门易踩坑题分析后篇
一,写在前面
本篇主要讲类和对象这一章节的踩坑题,这一章也相对复杂和难理解,面试也是常考的一类题,我分析的都是比较经典的,读者觉得自己学习的不够扎实,可以收藏,如果觉得写发不错的话,求个免费的赞,谢谢!
二,代码分析
代码分析①
阅读如下代码。 请问,对语句行 test.hello(). 描述正确的有()
package nowcoder; class test { public static void hello() { system.out.println("hello"); } } public class myapplication { public static void main(string[] args) { // todo auto-generated method stub test test=null; test.hello(); } }
a.能编译通过,并正确运行
b.因为使用了未初始化的变量,所以不能编译通过
c.以错误的方式访问了静态方法
d.能编译通过,但因变量为null,不能正常运行
静态的方法不依赖于对象,直接可以调用类名,虽然test=null,但test不指向任何对象,可以直接调用test。选择a
代码分析②
下面代码的运行结果是()
public static void main(string[] args){ string s; system.out.println("s="+s); }
a.代码编程成功,并输出”s=”
b.代码编译成功,并输出”s=null”
c.由于string s没有初始化,代码不能编译通过。
d.代码编译成功,但捕获到nullpointexception异常
使用局部变量必须初始化,否则会报错
如果我们使用成员变量,成员变量将会赋初值,局部变量使用一定要初始化
class rra{ string s; public static void main(string[] args) { rra t = new rra(); system.out.println(t.s); } }
选择d
代码分析③
如下代码的输出结果是什么?
public class test { public int amethod(){ static int i = 0; i++; return i; } public static void main(string args[]){ test test = new test(); test.amethod(); int j = test.amethod(); system.out.println(j); } }
a.0
b.1
c.2
d.编译失败
在方法里面不能定义静态的变量,静态的变量属于类变量,不能编译通过
选择d
代码分析④
当你编译和运行下面的代码时,会出现下面选项中的哪种情况?
public class pvf{ static boolean paddy; public static void main(string args[]){ system.out.println(paddy); } }
a.编译时错误
b.编译通过并输出结果false
c.编译通过并输出结果true
d.编译通过并输出结果null
静态成员变量没有赋初值,打印false
选择b
代码分析⑤
以下代码运行输出的是
public class person{ private string name = "person"; int age=0; } public class child extends person{ public string grade; public static void main(string[] args){ person p = new child(); system.out.println(p.name); } }
a.输出:person
b.没有输出
c.编译出错
d.运行出错
被 private 修饰的成员变量或者成员方法, 不能被类的调用者使用,编译出错
选择c
代码分析⑥
关于以下程序代码的说明正确的是()
public class hasstatic {// 1 private static int x = 100;// 2 public static void main(string args[]) {// 3 hasstatic hsl = new hasstatic();// 4 hsl.x++;// 5 hasstatic hs2 = new hasstatic();// 6 hs2.x++;// 7 hsl = new hasstatic();// 8 hsl.x++;// 9 hasstatic.x--;// 10 system.out.println(" x=" + x);// 11 } }
a.程序通过编译,输出结果为:x=102
b.程序通过编译,输出结果为:x=103
c.10行不能通过编译.因为x星私有静态变量
d.5行不能通过编译.因为引用了私有静态变量
一般静态变量是用类名访问,不能通过对象的引用访问,但这里是可以这样写的,编译器不报错,但不建议这样写。成员变量被static修饰它在方法区只有一个,虽然hsl被引用两次,但x还是原来的x,所以结果为102,不管x指向何处,它在方法区只有一份,选择a
代码分析⑦
以下代码在编译和运行过程中会出现什么情况
public class testdemo{ private int count; public static void main(string[] args) { testdemo test=new testdemo(88); system.out.println(test.count); } testdemo(int a) { count=a; } }
a.编译运行通过,输出结果是88
b.编译时错误,count变量定义的是私有变量
c.编译时错误,system.out.println方法被调用时test没有被初始化
d.编译和执行时没有输出结果
count 初始值为0.new带有参数的构造方法,a=88,count=88,选择a
代码分析⑧
cnt的值是( )
public class test{ static int cnt = 6; static{ cnt += 9; } public static void main(string[] args){ system.out.println(“cnt =” + cnt); } static{ cnt /=3; }; }
a.cnt=5
b. cnt=2
c.cnt=3
d.cnt=6
静态代码块不管生成多少个对象,其只会执行一次,且是最先执行的。
静态代码块执行完毕后, 实例代码块(构造块)执行,再然后是构造函数执行
所以cnt从上到下依次执行,选择a
代码分析⑨
程序输出结果为:
class test{ public string tostring() { system.out.print("aaa"); return "bbb"; } } public static void main(string[] args) { system.out.println(new test()); }
a.aaa
b.bbb
c.aaabbb
d.bbbaaa
解决这道题先引用一段代码
class test{ public string tostring() { system.out.print("aaa"); return "bbb"; } } class ss{ public static void main(string[] args) { test test = new test(); system.out.println(test); system.out.println(new test()); int a = 10; system.out.println(a); system.out.println(10); } }
观察一和二,他们其实各自对应等价,所以选择c
代码分析⑩
如下哪些使用是正确的()
public class test{ private float f=1.0f; int m=12; static int n=1; public static void main(string args[]){ test t=new test(); } }
a.t.a = 1.0
b.this.n
c.test.m
d.test.n
由题意知,f和m放在堆区,n在方法区(静态成员变量放在方法区),f虽然可以引用,但f为浮点型,f=10.0; this不能访问静态变量;m为成员变量,要用引用访问,不能用类名访问;类名可以访问静态变量,所以选择d
到此这篇关于java十道入门易踩坑题分析的文章就介绍到这了,更多相关java 踩坑题内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: 南方人春节吃啥