C++ Classes and Objects Language

C++ Classes and Objects Language

memorize.aimemorize.ai (lvl 286)
Section 1

Preview this deck

class

Front

Star 0%
Star 0%
Star 0%
Star 0%
Star 0%

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Active users

0

All-time users

0

Favorites

0

Last updated

6 years ago

Date created

Mar 1, 2020

Cards (10)

Section 1

(10 cards)

class

Front

describes what the object will be, but is separate from the object itself. In other words, can be described as an object's blueprint, description, or definition.

Back

Data abstraction

Front

the concept of providing only essential information to the outside world. It's a process of representing essential features without including implementation details.

Back

dot separator (.)

Front

used to access and call the method of the object.

Back

instantiation.

Front

The process of creating objects

Back

identity, attributes, behavior.

Front

the following three dimensions describe any object in object oriented programming

Back

objects

Front

independent units, and each has its own identity, just as objects in the real world do.

Back

data hiding

Front

The key principle here is that an object only reveals what the other application components require to effectively run the application. All else is kept out of view.

Back

Class constructors

Front

special member functions of a class. They are executed whenever new objects are created within that class. very useful for setting initial values for certain member variables

Back

Encapsulation

Front

the packing of data and function into a single component

Back

Method

Front

another term for a class' behavior. A method is basically a function that belongs to a class.

Back