首页 试题广场 > 试题详情
单选题

given the following code,what will be the output?class Value{    public int i=15;}public class Test{    public static void main(String argv[]){        Test t=new Test( );        t.first( );    }public void first( ){    int i=5;    Value v=new Value( );    v.i=25;    second(v,i);    System.out.println(v.i);}public void second(Value v,int i){    i = 0;    v.i = 20;    Value val = new Value( );    v = val;    System.out.println(v.i+" "+i);   }}

  • A.15 0 20
  • B.15 0 15
  • C.20 0 20
  • D.0 15 20
提交并查看答案
下一题 上一题
Ke星伙伴们的回答/ 6个回答
关闭
关闭
QQ
交流群
邀请
好友
App
下载
意见
反馈
返回
顶部