LaunchCode logo
  1. Contents
  2. 19. Classes and Objects, Part 2

19. Classes and Objects, Part 2ΒΆ

  • 19.1. Customizing Fields
    • 19.1.1. Readonly Fields
    • 19.1.2. Static Fields
    • 19.1.3. Constants
    • 19.1.4. Check Your Understanding
  • 19.2. Instance and Static Methods
    • 19.2.1. Quick Method Review
    • 19.2.2. Instance Methods
    • 19.2.3. Static Methods
    • 19.2.4. Accessing Static vs. Instance Fields
    • 19.2.5. Check Your Understanding
  • 19.3. Special Methods And Classes
    • 19.3.1. ToString
    • 19.3.2. Equals
      • 19.3.2.1. Coding a New Equals Method
      • 19.3.2.2. Components of Equals
      • 19.3.2.3. Characteristics of Equals
      • 19.3.2.4. Take Away
    • 19.3.3. StringBuilder Objects
    • 19.3.4. Check Your Understanding
  • 19.4. Visual Studio Generator Shortcut
    • 19.4.1. Try It!
  • 19.5. Exercises: Objects and Classes, Part 2
    • 19.5.1. The GetGradeLevel Method
    • 19.5.2. The AddGrade Method
      • 19.5.2.1. GPA Information
      • 19.5.2.2. Determine the New GPA
    • 19.5.3. ToString and Equals
  • 19.6. Studio: Restaurant Menu Continued
    • 19.6.1. Design
    • 19.6.2. Share Your Design
    • 19.6.3. Implementation
    • 19.6.4. Commit Your Work
    • 19.6.5. Bonus Mission
  • ← 18.8. Studio: Restaurant Menu
  • 19.1. Customizing Fields →

Back to top