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 Objects (Retired) Meet Objects Constructors

Clarifying some terms

What was the name of the term for the file? Like example.java. In System.out.printf, System is the class, out is the field, and printf is the method?

2 Answers

Christopher Augg
Christopher Augg
21,223 Points

Han,

I think the System class documentation will clear it up for you nicely.

As you said, System is the class, out is the field, and printf is the function. However, there is a little more to it. The field - out - is a static PrintStream object that provides a lot of functionality like the printf convenience method.

Regards,

Chris

Thanks for the link. It was very helpful.

The file example.java would be the source file. It is the file containing the source code.

Hope that helps!

Ohhhh, so that's what it's called. Thanks.