Why use object pointers rather than objects?

  • Thread starter krishna.kishore.0987
  • Start date
K

krishna.kishore.0987

Why are always object pointers used? (i.e., ObjectType *objPointer)
what are the advantages of using object pointers Vs objects
(ObjectType obj)
one advantage I see is passing them across methods, but is this purely
presentation issue (use 'objPointer' rather than '&obj') or are there
some performance affects?

-Krishna
 
R

red floyd

Why are always object pointers used? (i.e., ObjectType *objPointer)
what are the advantages of using object pointers Vs objects
(ObjectType obj)

Polymorhpism and slicing.
one advantage I see is passing them across methods, but is this purely
presentation issue (use 'objPointer' rather than '&obj') or are there
some performance affects?

Now you're talking about references instead of copied objects. The
advantage is that a reference parameter always refers to a valid object
(modulo UB in the caller, of course).
 
G

Guest

Why are always object pointers used? (i.e., ObjectType *objPointer)

Probably because of bad design, there is no reason to always use
pointers, but there cases where you should use them and there are other
cases where you can.
what are the advantages of using object pointers Vs objects
(ObjectType obj)
one advantage I see is passing them across methods, but is this purely
presentation issue (use 'objPointer' rather than '&obj') or are there
some performance affects?

As red floyd pointed out polymorphism is one reason, for large objects
there is the performance aspect. In some other cases it is about
semantics, some objects should not or cannot be copied. When determining
if a member should be an object or a pointer/reference to an object
there is also the question of ownership.

Personally I try to use references as much as possible and only use
pointers when I must. The question of whether an actual object or a
reference should be used it is often quite clear from the situation if
you know the differences between them and the implications of using them.
 
J

Juha Nieminen

Why are always object pointers used? (i.e., ObjectType *objPointer)

Always? I don't always use them. In fact, I seldom use them.
This is a very typical example of where I don't use them:

std::string s = "hello";

No pointer there.
one advantage I see is passing them across methods, but is this purely
presentation issue (use 'objPointer' rather than '&obj') or are there
some performance affects?

If you pass an object by value then a copy will most probably be made,
which will often be less efficient than passing by reference or by
pointer. Also there's the slicing problem if inheritance is involved.
 
K

Krishna

Always? I don't always use them. In fact, I seldom use them.
This is a very typical example of where I don't use them:

std::string s = "hello";

No pointer there.


If you pass an object by value then a copy will most probably be made,
which will often be less efficient than passing by reference or by
pointer. Also there's the slicing problem if inheritance is involved.

Hi Guys,
Thanks for the replies. When I was punching 'always' I was stuck in
the world of GUI, I see pointers being used for GUI objects, 'always'
Thanks again,
Krishna
 
G

Guest

Hi Guys,
Thanks for the replies. When I was punching 'always' I was stuck in
the world of GUI, I see pointers being used for GUI objects, 'always'

That would probably be because GUI classes often makes heavy use of
polymorphism, (most graphical elements inherit from a base widget (or
whatever) class, and often implements a number of interfaces).
 
J

James Kanze

That would probably be because GUI classes often makes heavy use of
polymorphism, (most graphical elements inherit from a base widget (or
whatever) class, and often implements a number of interfaces).

Independently of polymorphism (although that can also be a
reason), GUI classes often have identity. If you set the
background to red, you want it to be on the class instance which
controls the display, and not some copy. Classes which have
externally visible behavior often (usually?) have identity, and
when a class have identity, it can only be passed by reference
or by a pointer.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,572
Members
45,045
Latest member
DRCM

Latest Threads

Top