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 trialEdward Randall
1,834 PointsIs a class just the blueprint for instances of that class?
Do you ever directly call or use a class? or is it just a sort of template for you to instantiate then use?
1 Answer
Steven Parker
231,172 PointsThis may vary with the language, but classes in most object-oriented languages that use them can contain both instance methods and class methods. A class method can be called directly without having created an instance.
Otherwise, the class does effectively serve as a blueprint to create instances.