this post was submitted on 08 Jul 2023
16 points (100.0% liked)
C++
1763 readers
1 users here now
The center for all discussion and news regarding C++.
Rules
- Respect instance rules.
- Don't be a jerk.
- Please keep all posts related to C++.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
It doesn’t “forward to”, it is a way to say “ehi, this data X is located at …”
Imagine having a big large data structure that takes up a lot of space. You have to pass it a function to perform some operations, but if pointers didn’t exist you would have to clone those data - which is expensive memory wise and probably time wise to. So instead of wasting either space or time, you simply pass a memory address to that data and using it you can access the original data.
Obviously if you have primitive data structures, such as integers, or that you know that aren’t expensive to clone, you can simply pass by value and call it a day (somewhere on learncpp theee is a very nice explanation of all of this)
I’ll be searching learnccp for your reference. Thanks! Also huge thanks to everyone who keeps pouring the knowledge in! You guys rock!
I have never used the learncpp site, IMHO you should use https://en.cppreference.com/w/ which is written by a guy that is really invested in the language.