Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Abhinav Chadha
319 PointsMy code isn't working
treehouse:~/workspace$ javac Introductions.java
Introductions.java:7: error: non-static method printf(String,Object...) cann
ot be referenced from a static context
Console.printf("Abhinav");
^
1 error
treehouse:~/workspace$ ^C
treehouse:~/workspace$
2 Answers

Karen Freeman-Smith
29,248 PointsTry "console" with a lower-case "c"...

srikarvedantam
8,369 PointsFrom the compilation error message, it seems you are trying to invoke a non-static / instance method on a Class (java.io.Console) directly. Static / class methods should / can be invoked on Class and non-static / instance methods should / can be invoked on the instances / objects created from the class. So, first create an instance of "Console" and then invoke methods like "printf(...)" on the created instance as illustrated below:
import java.io.Console;
Console cons = System.console();
if (cons != null) {
cons.printf(...);
}