我正在开发这个项目,该项目允许用户在输出窗口中输入名称,但他们不应该能够输入数字。我无法找出正确的代码行来使其无法输入数字(如果他们这样做的话会给他们一条错误消息)。
import java.util.*;
public class UserInput
{
public static void main(String[] args)
{
List<String> list = new ArrayList<String>();
Scanner stdin = new Scanner(System.in);
do
{
Collections.sort(list);
System.out.println("Current list is " + list);
System.out.println("Add more? (y/n)");
if (stdin.next().startsWith("y"))
{
System.out.println("Enter: ");
list.add(stdin.next());
}
else
{
break;
}
}
while (true);
System.out.println("List is " + list);
String[] arr = list.toArray(new String[0]);
System.out.println("Array is " + Arrays.toString(arr));
}
}
public void add(String string) {
try {
double d = Double.parseDouble(string);
} catch(NumberFormatException e) {
// throw a exception or something.
return;
}
super.add(string);
return;
}
这是我的代码!
非常感谢您的帮助!