COMP 155: Object Oriented Programming - Lecture 6

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/22

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

23 Terms

1
New cards

Array

A collection of elements of the same type.

2
New cards

Animal class

Class representing animal objects with methods.

3
New cards

Driver class

Class that executes the program's main logic.

4
New cards

Team class

Class containing an array of Player objects.

5
New cards

Zoo class

Class managing an array of Animal objects.

6
New cards

Member class

Class representing a linked list member.

7
New cards

next

Reference to the next Member object.

8
New cards

Wrapper Class

Class for encapsulating primitive data types.

9
New cards

Double class

Wrapper for double primitive data type.

10
New cards

Integer class

Wrapper for integer primitive data type.

11
New cards

valueOf method

Static method for creating wrapper instances.

12
New cards

parseDouble

Converts String to double primitive type.

13
New cards

parseInt

Converts String to integer primitive type.

14
New cards

Boxing

Converting primitive type to wrapper class.

15
New cards

Unboxing

Converting wrapper class to primitive type.

16
New cards

Autoboxing

Automatic boxing by the compiler in context.

17
New cards

Autounboxing

Automatic unboxing by the compiler in context.

18
New cards

Nested Class

Class defined within another class's scope.

19
New cards

Inner Class

Non-static nested class with outer class access.

<p>Non-static nested class with outer class access.</p>
20
New cards

Static Nested Class

Nested class that cannot access non-static members.

21
New cards

Event Listeners

Often implemented as nested classes in GUIs.

22
New cards

Encapsulation

Hiding class details from other classes.

23
New cards

Outer Class

Class that contains a nested class.