Using Classes and Objects

3.8(5)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/5

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

6 Terms

1
New cards
object
an entity or data type that we create in java.
2
New cards
class
they contain instance fields or data that belong to the object and methods that are used to manipulate the data
3
New cards
Precedence
the order of operations in java
4
New cards
static variable
the variable belongs to the class itself, and is initialized only once at the start of the execution
5
New cards
immutable
the state of the object doesn’t change since it has been initialized
6
New cards
Method usage
when using methods of a class, remember the parameters used to call the method need to match the data types of the arguments of the defined method