C++ Lecture Notes 3
C++ Lecture Notes 3
Ivan Zhdankin
10.06.2021
+; −; /; ∗
+ =; − =; ∗ =; / =
i + +; + + i ; i − −; − − i
The post-increment (i + +) return the old value and then increment i, for example:
int i = 1;
int j = i++;
( Output : j = 1; i = 2)
int i = 1;
int j = ++i;
( Output : j = 2; i = 2)
&&(and ), ||(or )
There are many embedded operator overloading in Standard Library so that we normally do not
notice them
”Firstname ” + ”Lastname ”: operator + here is overloaded to be able to sum 2 strings from
Standard Library
We can overload any operators that exist in C++ and adopt them for our needs
Suppose we are writing a class and we would like to overload the comparison operator < for
different Fruits
There are two different ways we can do this:
Reference Pointer
Alias or another name for already existing Object that stores the memory address of
variable another value located in memory
An alias for variable that already exists Holds the address of a memory location
Operator & Operator ∗
There can NOT be NULL references There can be NULL pointers
Must be initialized when creating Possible to initialize at anytime
After initialization, it is impossible the After initialization, the pointer can point to
reference to refer to another object another object at any time
int a = 3;
int& rA = a;
int a = 3;
int* pA = &a;
I By applying & operator to the variable a we return the address of its memory location
I To get through the pointer to its target use ∗ operator:
*pA = 4;
I To get through the pointer pointing to the object we can use − > operator:
Customer * pC = &c2;
cout << " Customer ’s name is " << pC -> getName () << endl;
int const ci = 3;
I As a function parameter passed by value meaning that the parameter does not change inside the function
This means that we can not change the pointer to point to somewhere else
Another example is when the pointer is changeable but something the pointer points to can be
changed:
We can not use the above cpI to change the value of a target
Or we can do both at the same time: we can declare a pointer is const and it points at something
that is const:
We can not change it to point somewhere else or use it to change the value of the target
Demo: Const and Indirections
Sometimes we want the variables to live longer than the scope of the function
We can use Heap for storing such variables
Local variables are often described as being on the stack
There is a heap data structure which is used for the Heap
So we can hear that a memory is allocated on the heap
Local variables are the same as stack variables
To get some memory from the Heap we use new keyword
I The keyword new will allocate a memory and return a pointer to the object we just created
I The construct of the object will be run
I When we are done with the allocated memory we clean the memory by calling the keyword delete
I The memory will be released for other usages and the destructor of the object will be called
Demo: Heap
In the Standard Library there are smart pointers that handle the dynamic memory management for
us
unique ptr - unique pointer
I We can not make a copy of the unique pointer
I When the object goes out of scope the memory is released
shared ptr - for the cases we would like to copy
I Reference counted - as we make copies of the pointer the total number is updated every time
I When the object goes out of scope the total number counts back down deleting the copies until the
memory is released
weak ptr - lets look at the shared pointer without changing the reference count