Debugging java.lang.NoSuchMethodError
875 단어 method
What is java.lang.NoSuchMethodError ?
This is an Error. It means that when the code was compiled, the method existed in the class. But when the code was run, the method didn't exist.
Why java.lang.NoSuchMethodError happens ?
This happens when the referenced class used to compile the code and the class in the class path used to run the code are different. This error is caught by the compiler. this error can only occur at run time if the definition of a class has incompatibly changed.
How to debug java.lang.NoSuchMethodError ?
User should check for this possibility whether definition of a class has incompatibly changed.
내가 이 문제에 부딪힌 원인:
.class 파일의 버전이 서로 일치하지 않습니다.내가 만난 현상은 어떤 함수를 호출할 때 이 함수가 존재하지 않는다는 것이다.완성된 버전의 모듈을 바꾸면 이 문제를 해결할 수 있습니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
각각에 대한 혼란, 수집, 선택 및 매핑 방법직장 생활 초기에 Ruby 프로그래밍 언어를 배울 때 each , collect , select 및 map 방법에 대한 몇 가지 문제에 직면합니다. 그래서 초보 레이블 프로그래머를 위해 이 글을 씁니다. 처음에는 많...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.