gpt4 book ai didi

java - 数组初始化和 "new"关键字

转载 作者:行者123 更新时间:2023-11-29 09:54:05 25 4
gpt4 key购买 nike

撇开语法不谈,以下两个语句之间有什么区别吗?

String[] str = { "test" };

String[] str = new String[] {"test"};

最佳答案

不,没有区别。除非你想把它传递给方法

methodWhichAcceptsArray({"a", "b"}); //won't compile
methodWhichAcceptsArray(new String[] {"a", "b"}); //ok

关于java - 数组初始化和 "new"关键字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21171221/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com