-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmemory_management.cpp
44 lines (32 loc) · 1.25 KB
/
memory_management.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include <iostream>
// A good way to think about programming in low-level languages like
// C/C++ and assembly is just manipulating memory. Moving it allocating
// reallocating and deallocating it, etc.
// although programmers who use languages like Java, javascript, etc.
// like to complain about having to manage their memory manually, I personally
// think it is a useful feature of the language. (except when I make a
// nasty memory leak... XDDD)
// here's a really short example I modified from the internet to help
// you play with memory management safely you might want to look at
// pointers before this...
int main(){
char *p = NULL; //empty pointer
if (p) // evaluates to false as the pointer points to nothing
std::cout <<"This won't get displayed!\n";
p = new char[50];//allocate some memory
if (p) {//memory has been allocated so this test will pass
for (unsigned char i = 0; i != 50; i++) {
char &v = *(p + i); // create a reference to
v = 75; // set the character to K
}
// print out those K's
for (unsigned char i = 0; i != 50; i++)
std::cout <<*(p + i);
// de-allocate the memory
delete[] p;
std::cout <<"\n";
// apparently doesn't delete it all
for(size_t i = 0; i != 50; i++)
std::cout <<*(p + i);
}
}