- [Error Note] 19. 추상 메서드(상속) 오류: The type must implement the inherited abstract methodSong hyun[Error Note] 19. 추상 메서드(상속) 오류: The type must implement the inherited abstract method 함께 보면 좋을 글: 추상 클래스https://whatsthatsound.tistory.com/92 하나 이상의 추상 메서드를 포함하고 있는 클래스이다. ->추상 클래스는 구현이 없는(메서드 몸체가 없는) 메서드이며, 추상" data-og-host="whatsthatsound.tistory.com" data-og-source-url="https://whatsthatsound.tistory.com/92" data-og-url="https://whatsthatsound.tistory.com/92" data-og-image="https://scrap.kak..
- 2024-04-30 16:17:47
- [Error note] 18. 추상 클래스 오류: Cannot instantiate the typeSong hyun[Error note] 18. 추상 클래스 오류: Cannot instantiate the type 함께 보면 좋을 글: 추상 클래스https://whatsthatsound.tistory.com/92 하나 이상의 추상 메서드를 포함하고 있는 클래스이다. ->추상 클래스는 구현이 없는(메서드 몸체가 없는) 메서드이며, 추상" data-og-host="whatsthatsound.tistory.com" data-og-source-url="https://whatsthatsound.tistory.com/92" data-og-url="https://whatsthatsound.tistory.com/92" data-og-image="https://scrap.kakaocdn.net/dn/eqsSra/hyVVGcqaoS..
- 2024-04-29 16:14:11
- [Error Note] 17. 추상 클래스 오류: The abstract method in type can only be defined by and abstact classSong hyun[Error Note] 17. 추상 클래스 오류: The abstract method in type can only be defined by and abstact class 함께 보면 좋을 글: 추상 클래스https://whatsthatsound.tistory.com/92 하나 이상의 추상 메서드를 포함하고 있는 클래스이다. ->추상 클래스는 구현이 없는(메서드 몸체가 없는) 메서드이며, 추상" data-og-host="whatsthatsound.tistory.com" data-og-source-url="https://whatsthatsound.tistory.com/92" data-og-url="https://whatsthatsound.tistory.com/92" data-og-image="https:..
- 2024-04-28 16:13:24
- [Error Note] 16. 접근 제어 지시자 오류: The public type must be defined in its own fileSong hyun[Error Note] 16. 접근 제어 지시자 오류 : The public type must be defined in its own file 파일 내부에 클래스 A,B와 그 변수들을 선언하던 중, 에러가 발생했다.에러가 발생한 곳을 잘 살펴보면, 클래스 B를 선언하는 부분에서 에러가 발생한 것을 알 수 있다. 메세지는 아래와 같다.접근 지시 제어자가 public인 클래스는, 한 파일에 오직 하나에만 생성이 가능하다는 것이다.살펴보면 클래스 A,B 모두 접근 제어 지시자가 public임을 알 수 있다.The public type must be defined in its own file 이는 접근 지시 제어자 public의 특징으로, public 클래스의 개수를 하나로만 지정하면 된다.아래와 같이, 클..
- 2024-04-27 10:47:00
- [Error Note] 15. 배열 호출 오류: Null Pointer ExceptionSong hyun[Error Note] 15. 배열 호출 오류: Null Pointer Exception 책의 정보를 담는 클래스 Book.Book 클래스의 변수를 담는, 개수가 10인 books라는 배열을 만들고,배열 속의 변수를 차례차례 출력하는 for문을 만들었다. 해당 for문을 사용해 변수들을 출력하려던 찰나,"Null Pointer Exception" 오류가 발생했다. Null Pointer Exception Null pointer exception은 null 값을 가진 변수를 호출할 때 발생하는 에러이다. 아래의 코드를 잘 살펴보자. books 배열에 0,1,2,3,4,9번째 인덱스에 각각의 책 제목, 저자를 의미하는 변수들을 초기화했다.그런데 books[4]에서 바로 books[9]를 초기화한 것을 볼 수..
- 2024-04-26 12:23:30
- [Error Note] 14. 배열 선언 오류: Cannot define dimension expressions when an array initializer is provideSong hyun[Error Note] 14. 배열 선언 오류: Cannot define dimension expressions when an array initializer is provide 과일의 이름을 담는 배열 strArray.선언과 동시에 배열에 변수를 담는 중, 오류가 발생했다. 오류 메세지를 살펴보면 아래와 같다. 배열이 초기화 될 때는 다음 변수값 (밀크티, 커피, 허브티)을 어디에 넣어야 할지 모른다는 뜻이다. -define: 정의하다-initializer: 초기화Cannot define dimension expressions when an array initializer is provide 이는 배열의 기본 형식과 관련된 에러이다.선언과 동시에 배열 내 변수의 값을 초기화할 때에는, 배열의 크기..
- 2024-04-25 11:45:22
- [Error Note] 13. 배열 선언 오류: Variable must provide either dimension expression or and array initializerSong hyun[Error Note] 13. 배열 선언 오류: Variable must provide either dimension expression or and array initializer 함께 보면 좋은 글: https://whatsthatsound.tistory.com/76 [Java] 33. 배열의 길이와 요소 [Java] 32. 배열의 길이와 요소 1. 배열의 길이와 요소 *배열의 길이와 요소의 개수는 꼭 동일하지 않다. **배열은 반복문과 함께 많이 쓰인다. 연습문제 1. -배열 안의 요소의 개수를 출력하시오. -값 whatsthatsound.tistory.com 정수형 변수들을 담는 배열, grades. 해당 배열을 선언하던 중 오류가 발생했다. 오류 메세지는 다음과 같다. 배열 초기화식을 포함해야 ..
- 2024-04-24 11:45:09
- [Error Note] 12. 배열 크기 오류: Index 5 out of Bounds for length 5 at -Song hyun[Error Note] 12. 배열 크기 오류: Index out of Bounds 정수형 변수의 값을 받는 배열, numbers와 intBox. 두 배열을 선언한 뒤, 배열 numbers 내부의 변수를 초기화하던 중 에러가 발생했다. 에러 메세지를 잘 살펴보면 "인덱스의 범위 바깥으로 나갔다"고 출력된 것을 살펴볼 수 있다. Index 5 out of Bounds for lenght 5 at - 아래의 배열 선언을 잘 살펴보자. 에러가 발생한 배열 number는 0부터 2까지의 인덱스 길이를 가지고 있다.(크기 3) 즉, 크기는 3이지만 인덱스는 0,1,2까지만 존재한다고 볼 수 있다. 즉 위의 코드에서 볼 수 있는 number[3]은, 배열 numbers의 범위를 벗어난다. 이럴 경우에는 number..
- 2024-04-23 11:44:57
- [Error Note] 11. static 변수 오류: Cannot make a static reference to the non-static fieldSong hyun[Error Note] 11. static 변수 오류- Cannot make a static reference to the non-static field 함께 보면 좋을 글: https://whatsthatsound.tistory.com/62 [Java] 27. Static 변수와 원리 [Java] 27. Static 변수와 원리 1. static 변수 static: 프로그래밍에서 중요한 개념 중 하나이다. -클래스 변수라고도 불린다. -클래스의 모든 인스턴스가 공유하는 변수이다. =즉, 객체가 동일한 static 변 whatsthatsound.tistory.com class의 이름으로 호출 할 수 있어, 클래스 변수라고도 불리는 static 변수. static 변수를 사용해 NumberPrinter.w..
- 2024-04-22 16:58:01
- [Error Note] 10. this 키워드-생성자 호출 오류: Constructor call must be the firset statement in a constructorSong hyun[Error Note] 10. this 키워드-생성자 호출 오류: Constructor call must be the firset statement in a constructor 함께 보면 좋을 글: https://whatsthatsound.tistory.com/60 [Java] 26. 키워드 this, this의 3가지 용법 [Java] 26. 키워드 this, this의 3가지 용법 1. this this: 인스턴스(객체) 자신의 메모리를 가리킨다. (인스턴스의 주소) -생성자에서 또 다른 생성자를 호출할 때 사용할 수 있다. -자신의 주소(참조값, 주 whatsthatsound.tistory.com 생성자 오버로딩 기법은 여러개의 생성자를 만들어, 사용자의 편의에 맞게 변수를 입력하는 기법을 말한다..
- 2024-04-21 10:32:02
스킨 업데이트 안내
현재 이용하고 계신 스킨의 버전보다 더 높은 최신 버전이 감지 되었습니다. 최신버전 스킨 파일을 다운로드 받을 수 있는 페이지로 이동하시겠습니까?
("아니오" 를 선택할 시 30일 동안 최신 버전이 감지되어도 모달 창이 표시되지 않습니다.)