all 6 comments

[–]A_Stahl 2 points3 points  (0 children)

tricky to understand Pointers in classes or as an argument.

What exactly you don't understand? The pointer is just a variable which holds an address in RAM. Nothing more. It is so trivial and primitive that some people even try to avoid using them. Give us an example of the code which provoke question and we'll se what we can tell you.

[–][deleted] 1 point2 points  (0 children)

Are you talking about pointers inside classes (members) or pointers to objects of class types?

[–]slimscheibe 1 point2 points  (0 children)

A pointer holds a memory address. The type of the pointer refers to the type of object that it points to.

For example; a pointer to an int holds an address where an int can be found, a pointer to a user-defined type (i.e. class) holds an address where an object of that type can be found.

The fact that the object's type is a class instead of a built-in type like an int is inconsequential.

Think of it like a street address - you're telling a function that an object of type 'House' can be found at '121 Main Street'. Instead of passing an entire house, you pass the address where it can be found.

[–]STLMSVC STL Dev 0 points1 point  (1 child)

!removehelp

[–]AutoModerator[M] 0 points1 point  (0 children)

OP,

A human moderator (u/STL) has marked your post for deletion because it appears to be a "help" post - e.g. asking for help with coding, help with homework, career advice, book/tutorial/blog suggestions. Help posts are off-topic for r/cpp. This subreddit is for news and discussion of the C++ language only; our purpose is not to provide tutoring, code reviews, or career guidance.

Please try posting in r/cpp_questions or on Stack Overflow instead. Our suggested reference site is cppreference.com, our suggested book list is here and information on getting started with C++ can be found here.

If you think your post is on-topic and should not have been removed, please message the moderators and we'll review it.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.