The Java Tutorials have been written for JDK 8. Examples and practices described in this page don't take advantage of improvements introduced in later releases and might use technology no longer available.
SeeDev.java for updated tutorials taking advantage of the latest releases.
SeeJava Language Changes for a summary of updated language features in Java SE 9 and subsequent releases.
SeeJDK Release Notes for information about new features, enhancements, and removed or deprecated options for all JDK releases.
You've seen classes defined in the following way:
classMyClass { // field, constructor, and // method declarations}
This is aclass declaration. Theclass body (the area between the braces) contains all the code that provides for the life cycle of the objects created from the class: constructors for initializing new objects, declarations for the fields that provide the state of the class and its objects, and methods to implement the behavior of the class and its objects.
The preceding class declaration is a minimal one. It contains only those components of a class declaration that are required. You can provide more information about the class, such as the name of its superclass, whether it implements any interfaces, and so on, at the start of the class declaration. For example,
classMyClass extends MySuperClass implements YourInterface { // field, constructor, and // method declarations}
means thatMyClass
is a subclass ofMySuperClass
and that it implements theYourInterface
interface.
You can also add modifiers likepublic orprivate at the very beginningso you can see that the opening line of a class declaration can become quite complicated. The modifierspublic andprivate, which determine what other classes can accessMyClass
, are discussed later in this lesson. The lesson on interfaces and inheritance will explain how and why you would use theextends andimplements keywords in a class declaration. For the moment you do not need to worry about these extra complications.
In general, class declarations can include these components, in order:
About Oracle |Contact Us |Legal Notices |Terms of Use |Your Privacy Rights
Copyright © 1995, 2024 Oracle and/or its affiliates. All rights reserved.