Chapter 2

Making Your Own Classes

IN THIS CHAPTER

check Creating your own class

check Looking at the pieces of a class declaration

check Finding out about class fields

check Constructing constructors

check Adding methods to your classes

check Using the this keyword

check Using the new record feature in Java 14

Okay, class, it's time to learn how to create your own classes.

In this chapter, you discover the basics of creating classes in Java. All Java programs use or consist of classes, so you’ve already seen many examples of classes. You’ve seen class headers such as public class GuessingGame and static methods such as public static void main. Now, in this chapter, I show you how to create programs that have more than one class.

Declaring a Class

All classes must be defined by a class declaration — lines of code that provide ...

Get Java All-in-One For Dummies, 6th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.