此代码已成功编译,但它显示运行时错误和异常,因为scanner类中没有这样的元素。在读取测试用例之后,它应该将输入作为字符串,但是它显示了一个异常。
public class CandidateCode
{
public static void main(String args[] ) throws Exception
{
//Write code here
Scanner sc=new Scanner(System.in);
int testCase=sc.nextInt();
while(testCase>0)
{
//sc.next();
Scanner scan=new Scanner(System.in);
String temp="";
String res="";
for(int i=0;i<str.length();i++)
{
if(temp.indexOf(str.charAt(i))==-1)
temp=temp+str.charAt(i);
else
{
res=res+str.charAt(i);
}
}
char min='z';
for(int j=0;j<res.length();j++)
{
if(res.charAt(j)<min)
min=res.charAt(j);
}
System.out.println(min);
testCase++;
}
}
}
编译日志错误为:
线程“main”中的异常Java . util . nosuchelementexception < br >位于Java . util . scanner . throw for(scanner . Java:862)< br >位于Java . util . scanner . next(scanner . Java:1371)< br >位于candidatecode . main(candidatecode . Java:19)
NoSuchElementException
如果您在到达数据流末尾时尝试读取数据,则会从Scanner.next()
中抛出。
而不是:
sc.next();
...
用:
while(! sc.hasNext()) { }
sc.next();
...
Scanner.hasNext()
检查是否有更多数据要读取,while 循环会等到有更多数据要读取后再继续。
NoSuchElementException
将被抛出,因为您正在尝试从数据到达末尾的输入(扫描仪)读取数据。
您必须通过检查< code>hasNext()是真还是假来读取输入(扫描仪)
只需在过程结束时或再次使用之前执行scanner.clear()
。