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 trialAlex Kasper
1,896 PointsClass Review 1 of 3 - Why package won't be recognized on first line despite being declared?
I have the package declared on the first line but I keep on getting a Bummer! message. It says that I need to make sure my package is declared on the first line. It appears to be declared to me but I have to be missing something.
package com.example;
import java.util.Date;
public class BlogPost {
private mAuthor;
private mTitle;
private mBody;
private mCategory;
private mCreationDate;
public BlogPost(String author, String title, String body, String category, Date creationDate) {
mAuthor = author;
mTitle = title;
mBody = body;
mCategory = category;
mCreationDate = creationDate;
}
}
1 Answer
Jason Anello
Courses Plus Student 94,610 PointsHi Alex,
You don't have a data type assigned to each of your member variables.
Example:
private String mAuthor;