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 trialHan Wu
927 PointsClarifying 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
21,223 PointsHan,
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
Ethan Peacock
30 PointsThe file example.java would be the source file. It is the file containing the source code.
Hope that helps!
Han Wu
927 PointsOhhhh, so that's what it's called. Thanks.
Han Wu
927 PointsHan Wu
927 PointsThanks for the link. It was very helpful.