Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Objects Meet Objects Final

Michel Spaniolo
PLUS
Michel Spaniolo
Courses Plus Student 1,850 Points

im having trouble compiling this excercise

https://w.trhou.se/h6xuy20qor Im trying to compile and keep getting back error..I have combed through and cannot find what the error references..Its the same of the example shown

1 Answer

Steven Parker
Steven Parker
229,744 Points

The error message "Example.java:6: error: unclosed string literal" tells you to look in the file "Example.java" on line 6 for a string that is missing a final quote mark.

Then, "Example.java:10: error: cannot find symbol" tells you that in "Example.java" on line 10 there's a reference to a symbol it doesn't know about. In this case its a spelling issue where the code has "swaphead" instead of "swapHead" (with a capital "H").

Steven Parker
Steven Parker
229,744 Points

Michel Spaniolo — If your question has been answered, you can mark it solved by choosing a "best answer".
And happy coding!