What's up with the static keyword?

Static variables can be used without creating an instance of a classStatic methods can't use instance variables in a classStatic methods can't have parametersThe main() method can't be static

Woot woot! Static variables and methods don't need instances and, therefore, can't use instance variables. main() is a great example of a static method with parameters.

Close! Static variables and methods don't need instances and, therefore, can't use instance variables. main() is a great example of a static method with parameters.