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

Rodrigo Gomez-Palacio
Rodrigo Gomez-Palacio
1,125 Points

What exactly does the "static" word do?

What exactly does the "static" word do?

1 Answer

samy alihamad
samy alihamad
9,690 Points

Rodrigo, You use the static keyword when you want to create a variable or method that belongs directly to a class and not an instance of that class (i.e you don't have to create an object of that class in order to use the variable or method). One example of when to use a static variable would be to keep count of how many objects have been created for a class. Here is a link that will give you some more information on this topic: http://www.programmingsimplified.com/java/source-code/java-static-method-program.

Thanks,