When I try to debug a Java file in eclipse then its finally says “Thread.exit() line not exist”->Edit Source Path . What is this message says.Also there is no method exit in Thread class.Please comment on this.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Actually, there is a
Thread.exit()method in the Sun implementation of Thread. It is a private method that is called to do some house-keeping before a thread actually exits.I think you need to fix the source path as the error message suggests. Make sure that Eclipse is using the correct sources ZIP file for the runtime JAR that you are using.