记一次笔试

public class TEST {
    static String str ;
    public static void main(String[] args) {
        System.out.println("s=" + str);
    }
}

静态的String 对象,默认初值为null
所以得出结果是
s = null


public class TEST {
    public static void main(String[] args) {
    	String str;
        System.out.println("s=" + str);
    }
}

编译报错,非静态变量必须初始化


public class TEST {
    public static void main(String[] args) {
        String str = new String("hello");
        char[] arr = {'a','b','c'};
        TEST test = new TEST();
        test.change(str,arr);
        System.out.print(str);
        System.out.print(arr);
    }

    public void change(String str,char[] arr){
        str = "test OK";
        arr[0] = 'g';
    }
}

输出结果:
hellogbc
原因,String字符串存储在常量池中,一旦初始化就不能改变,所以str的值一直是 hello
而 字符串数组,char[] 不在字符串常量池中,通过数组名传递,相当于地址传递,改变是可以映射到char[]数据本身的。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值