C++ Programming Concepts and Definitions

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/28

flashcard set

Earn XP

Description and Tags

These flashcards cover key concepts in C++ programming related to object-oriented programming, including virtual functions, operator overloading, and polymorphism.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

29 Terms

1
New cards

Virtual Functions

Functions in the base class that you can override in its derived class.

2
New cards

Operator Overloading

Redefines how operators behave when applied to objects of a class.

3
New cards

Abstract Function

A pure virtual function with no definition that must be overridden.

4
New cards

Abstract Class

A class that has at least one abstract function in C++, and cannot be instantiated.

5
New cards

Upcasting

Converting a pointer or reference of a derived class type to a pointer or reference of the base class type.

6
New cards

Operator Overloading Purpose

To redefine operator behavior for class objects.

7
New cards

Try/Catch Blocks

Used to run potentially unsafe code, with 'try' transferring control to 'catch' for handling exceptions.

8
New cards

Compile Time Polymorphism

Occurs when the program prepares for execution, such as through operator overloading.

9
New cards

Run Time Polymorphism

Executed with machine instructions, primarily through virtual functions.

10
New cards

virtual

expected to be overriden

11
New cards

declaring abstract function

class AbstractClass {
	public:
	virtual void abstractMethod() = 0;
};



12
New cards

overriding vs overloadin

overloading provides multiple definitions and occurs in the same class. overriding replaces the definition and occurs through iheritance

13
New cards

non static

uses the instance of a class accessed by using “this”

14
New cards

static

needs to operate on two different instances and is used to compare. implemented globally and called by class name

15
New cards

common return types

primitive, bool, stream, increments, [], function call ()

16
New cards

friends

able to access any object regardless of modifier and can access private and protected. cannot acces private members of friend

17
New cards

operators that can be overloaded

arithmetic, comparison, logical, increment, typecasting

18
New cards

operators that cant be overloaded

sizeof, member access (.), pointers

19
New cards

nonstatic operators

unary, binary, assignment, arrays, func calls

20
New cards

static operators

friends, stream

21
New cards

exceptions

indicate that a special circumstance has occurred in the code when it cannot proceed. handles runtime errors or unexpected conditions

22
New cards

try/catch syntax

try{

//unsafe code

catch(exception &e){
//code that handles exception
}

23
New cards

how do catches work?

code that is unsafe is in try then try transfers control to catc and conducts a specific action if a certain exception is thrown

24
New cards

what()

used to get a message on the type of error

25
New cards

polymorphism

abnility for data or functions to take on many forms

26
New cards

compile time polymorphism

when the program prepares for execution (operator overloading)

27
New cards

run time polymorphism

executes machine instructions (virtuals)

28
New cards

shallow copy

copies pointers value

29
New cards

deep copy

creaates new object and copies actual data