What are static methods?
Behaviors we can access without creating an object
What are non-static methods?
Behaviors that can only be accessed after an object is created
What do class variables do?
How do you write getters?
public class getShit() {
return shit;
}
When can this be used?
What does this mean?