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 Data Structures Getting There Class Review

mDescription = description; and mCreationDate = creationDate; cannot find symbol error

2 Answers

Brendon Butler
Brendon Butler
4,254 Points

When you were naming your Treet's constructor's variables "description" and "creationDate" it looks as if you started each one of those with a capital letter. All variables should start with a lowercase letter for the first word, and all words that come after will start with a capital. This is called camel casing.

Solution: rename your "Decription" and "CreationDate" variables in the Treet class in the public Treet(String Description, Date CreationDate) constructor to "description" and "creationDate". Happy coding, Brendon! :D

Thanks dude

Im having the same problem but, my description and creation date are right. Any hints?