Please enable JavaScript to use CodeHS

Texas Computer Science 2

Lesson 6.7 Class Methods and Class Variables

Description

In this lesson students learn about Class methods and Class variables, which are different from Instance methods and Instance variables.

Students have learned a lot about Instance methods and Instance variables. Each instance of a class has its own instance methods, and its own instance variables. For example, two different Rectangle objects can each have their own width and their own height. These values can be different from instance to instance.

The key difference with Class methods and Class variables is that all instances share the exact same Class methods and Class variables. Each instance does not get its own copy, it is all shared among instances. These methods and variables exist at the Class level, not the Instance level.

Class methods and Class variables are specified using the static keyword.


Objective

Students will be able to:

  • Explain the difference between instance methods and class methods
  • Utilize class methods in a program that is a client of a class
  • Utilize class variables in a program that is a client of a class
  • Write their own static class methods on their classes
  • Write their own static class variables on their classes
  • Identify a class variable / method vs an instance variable / method
  • Explain when class variables / methods would be appropriate instead of instance variables / methods