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
Chris Bensen
2,835 Pointscannot find symbol "date"
package com.teamtreehouse;
import java.util.Date;
public class Treet {
private String mAuthor;
private String mDescription;
private Date mCreationDate;
public Treet(String author, String description, Date creationDate) {
mAuthor = author;
mDescription = description;
mCreationDate = creationDate;
}
public String getAuthor() {
return mAuthor;
}
public String getDescription() {
return mDescription;
}
public Date getDate() {
return mCreationDate;
}
}
import com.teamtreehouse.Treet;
public class Example {
public static void main(String [] args) {
Treet treet = new Treet(
"craigsdennis",
"Want to be famous? Simply tweet about Java and use the hashtag #treet. I'll use your tweet in a new @treehouse course about data structures.",
new Date(14218497320000L)
);
System.out.printf("This is a new Treet: %s, %n", treet);
}
}
1 Answer
Simon Coates
28,695 Pointsprobably need to import date in second class. so add:
import java.util.Date;
to the top. I'm assuming the lower case d is a transcription error.
Jeremy Hill
29,567 PointsJeremy Hill
29,567 PointsI don't see where you have the word "date" with a lowercase 'd'?