Using Classes and Objects

studied byStudied by 202 people
3.8(5)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 5

6 Terms

1
object
an entity or data type that we create in java.
New cards
2
class
they contain instance fields or data that belong to the object and methods that are used to manipulate the data
New cards
3
Precedence
the order of operations in java
New cards
4
static variable
the variable belongs to the class itself, and is initialized only once at the start of the execution
New cards
5
immutable
the state of the object doesn’t change since it has been initialized
New cards
6
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
New cards
robot