728x90
SMALL
- 스캐너라는 동일한 클래스이름을 쓸 때
class Scan{
public Scan() {
System.out.println("내가만든 Scanner");
}
public class Test{
public static void main(String[] args) {
java.util.Scanner in = new java.util.Scanner(System.in);
System.out.println("숫자입력 : ");
int a = in.nextInt();
}
}
}
같은 이름으로 클래스를 만들지 말던가
아니면 앞에 java.util.을 붙혀준다
728x90
LIST
'JAVA > Java error' 카테고리의 다른 글
No converter found for return value of type: class java.util.HashMap: message Converter추가로 해결 (0) | 2021.06.03 |
---|---|
selection does not contain a main type (0) | 2020.11.05 |
The public type must be defined in its own file (0) | 2020.10.13 |
the selection cannot be launched and there are no recent launches (0) | 2020.10.13 |
java.lang.ClassNotFoundException: (0) | 2020.10.13 |
댓글