gpt4 book ai didi

java - 获取空值。初学者

转载 作者:行者123 更新时间:2023-12-01 06:28:45 27 4
gpt4 key购买 nike

当使用交互面板运行我的代码时,我在结果之前得到一个空值。例如当我输入:第一个词——谷歌第二个词 - Chrome

结果应该是 - gcohorgolme但它是 - nullgcohorgolme

有什么想法吗?这是我的代码:

public class Collate{
String result;
String x;
String y;

public String collate(String x, String y){

for(int i = 0; i < x.length(); i++)
{
result += x.charAt(i);
result += y.charAt(i);
}
return (result);
}
}

非常感谢!

最佳答案

确保初始化结果:

  public String collate(String x, String y){
result = ""; // <-- here

for(int i = 0; i < x.length(); i++)
{
result += x.charAt(i);
result += y.charAt(i);
}
return (result);
}

关于java - 获取空值。初学者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18819681/

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