gpt4 book ai didi

java - String.split() 方法在 Eclipse Oxy 版本 4.7.0M2 中不起作用

转载 作者:行者123 更新时间:2023-12-01 19:42:42 25 4
gpt4 key购买 nike

String.split() 方法在 Eclipse Oxygen 版本 4.7.0M2 中不起作用我准备了一个简单的代码片段

public static void main(String[] args) {
// TODO Auto-generated method stub
int T = Integer.parseInt(System.console().readLine());
while(T > 0)
{
int N = Integer.parseInt(System.console().readLine());
String inp = System.console().readLine();
String[] inp = inp.split("\\s+");
T--;
}
}

Please find the Screenshot of the error

split() 在 IDE 中显示错误。我正在使用 JRE 1.8。相同的功能可以在 Eclipse Luna 中使用相同的 JRE 正常工作。请任何人帮助我理解确切的问题。

最佳答案

您定义了两个同名变量:String inp 和 String[] inp。为字符串数组指定一个不同的名称。

关于java - String.split() 方法在 Eclipse Oxy 版本 4.7.0M2 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54704282/

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