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 trialJohn Arguello
206 PointsWhy am I getting this error: 'static' is only allowed in constant variable declarations.
Why do I get this error when I use public static void main (String [] args){
// I have setup a java.io.Console object for you named console
class Introductions {
public static void main (String [] args){
String firstName = "John";
}
}
1 Answer
Jason Anders
Treehouse Moderator 145,860 PointsHey John,
The instructions for challenges are very specific and must be followed exactly for a task to pass. Here the instructions say nothing about creating a Class
or a Main
method. It just wants you to "define a string variable". In fact, a comment in the code block does state: "// I have setup a java.io.Console object for you named console".
So, while the code is correct, it goes way beyond what the task is looking for and therefore is confusing the Code Checking Engine.
All task 1 is looking for is:
String firstName = "John";
Other than that... Nice job! Just remember don't do what isn't asked. :)
John Arguello
206 PointsJohn Arguello
206 PointsThank you very much!