classes and objects

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:04 AM on 9/3/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

13 Terms

1
New cards

class

blueprint or template for creating objects, describes what data an object can store and what actions it can perform

2
New cards

object

a specific instance created from a class

3
New cards

fields

methods

constructors

a class is made of of

4
New cards

field

variable inside a class that stores data or state

5
New cards

method

block of code inside a class that performs an action

6
New cards

constructor

special block of code that run when an object is created

7
New cards

public

private

protected

access modifiers

8
New cards

public

can be access from outside the class

9
New cards

private

can be accessed only inside the same class

10
New cards

protected

can be accessed within the same package and by subclasses

11
New cards

this

refers to the current object, often used when a constructor parameter has the same name as a class field

12
New cards

new

used to create a new object

13
New cards

encapsulation

protecting object data and controlling access through methods