473,387 Members | 1,512 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Rule of Thumb:Copy ctor,assingment opr

Dear all,

How do experienced programmers using this group use the rule of
thumb,namely copy ctor, assignment operator, and dtor.

example

if the class does not need them dont use and define them

use them but dont define them (for future revisions of the class as
placeholders)

or...

One more resource question on default and value iniliatization, I am
still looking references to read on these topics.

Regards,

Jun 22 '06 #1
9 1624
utab wrote:
Dear all,

How do experienced programmers using this group use the rule of
thumb,namely copy ctor, assignment operator, and dtor.
That's the Rule of *THREE*, not the Rule of thumb.
example

if the class does not need them dont use and define them

use them but dont define them (for future revisions of the class as
placeholders)

If I use them, I define them, even if they're trivial. That way I know
exactly what's happening, rather than relying on compiler magic.
Otherwise, I explicitly hide them.
Jun 22 '06 #2
In message <BU*******************@newssvr14.news.prodigy.com> , red floyd
<no*****@here.dude> writes
utab wrote:
Dear all,
How do experienced programmers using this group use the rule of
thumb,namely copy ctor, assignment operator, and dtor.


That's the Rule of *THREE*, not the Rule of thumb.
example
if the class does not need them dont use and define them
use them but dont define them (for future revisions of the class as
placeholders)


If I use them, I define them, even if they're trivial. That way I know
exactly what's happening, rather than relying on compiler magic.
Otherwise, I explicitly hide them.


The compiler is more reliable than I am at keeping track of every single
data member of a large class. If they are trivial, I already know what
the "compiler magic" is, so why add clutter to the definition and risk
getting it wrong?

If the OP really does need to define them, he should consider defining a
swap function as well, and then defining the assignment operator in
terms of the copy constructor using the copy-and-swap idiom.

--
Richard Herring
Jun 23 '06 #3

red floyd wrote:
utab wrote:
Dear all,

How do experienced programmers using this group use the rule of
thumb,namely copy ctor, assignment operator, and dtor.


That's the Rule of *THREE*, not the Rule of thumb.
example

if the class does not need them dont use and define them

use them but dont define them (for future revisions of the class as
placeholders)

If I use them, I define them, even if they're trivial. That way I know
exactly what's happening, rather than relying on compiler magic.


That makes no more sense to me than "If I use a string class I define
one, rather than relying on <string> magic".

If the compiler "magic", which is no more magic than any other correct
compiler behaviour, does the right thing then let it. That's what it's
there for. If you write them yourself, you add nothing but risk
introducing bugs and confusing other programmers. Not to mention the
loss of your own time.

Gavin Deane

Jun 23 '06 #4
"utab" <um********@gmail.com> wrote in message
news:11**********************@g10g2000cwb.googlegr oups.com...
Dear all,

How do experienced programmers using this group use the rule of
thumb,namely copy ctor, assignment operator, and dtor.

example

if the class does not need them dont use and define them

use them but dont define them (for future revisions of the class as
placeholders)

or...

One more resource question on default and value iniliatization, I am
still looking references to read on these topics.

Regards,


As soon as I declare any pointer or reference in a struct/class I hide the
copy and assigment operators by declaring them private. I usually find it
non trivial to create the copy and assignemnt operators as I'm usually
loading some resource into a pointer that is not easy to duplicate. By
hiding them if I try to use them I'll get a compilation error.

Personally, I find it easier to use just pointers for these types of classes
when I stick them in vectors. It would probably be easier for me to use
smart pointers, but for some unknown reason I just don't trust smart
pointers to be smart enough, so do them manually.

What I normally do is start out any class as a struct if it is POD. As soon
as I need to create an initialization list, I change it to a class and
create a dtor.
Jun 23 '06 #5
utab wrote:
if the class does not need them dont use and define them

use them but dont define them (for future revisions of the class as
placeholders)

IMHO good rules are:
1. If class should not be copied by application logic - declare copy
ctor and operator =() as private and do not provide any implementation.
2. copy ctor and operator=() should be both either defined or not
defined.

Jun 23 '06 #6

utab wrote:
Dear all,

How do experienced programmers using this group use the rule of
thumb,namely copy ctor, assignment operator, and dtor.

example

if the class does not need them dont use and define them

use them but dont define them (for future revisions of the class as
placeholders)

or...

One more resource question on default and value iniliatization, I am
still looking references to read on these topics.

Regards,


I see that thereis still no compromise on this issue. I asked this
question after reading related parts from effective C++. I think that
if no dynamic allocation takes place then it is not wise to use these
because the compiler synthesizes them for you but even then maybe there
could be problems concerning memberwise and bitwise copy.

Still not an exact clarification, are there others to comment on the
subject?

Regards,

Jun 23 '06 #7
On Fri, 23 Jun 2006 07:17:30 -0700, "Jim Langston"
<ta*******@rocketmail.com> wrote:
As soon as I declare any pointer or reference in a struct/class I hide the
copy and assigment operators by declaring them private. I usually find it
non trivial to create the copy and assignemnt operators as I'm usually
loading some resource into a pointer that is not easy to duplicate. By
hiding them if I try to use them I'll get a compilation error.
This is a good rule of thumb. From the conceptual point of view you
implement object types (as opposed to value types) that way. For
object types copying makes no sense.
Personally, I find it easier to use just pointers for these types of classes
when I stick them in vectors. It would probably be easier for me to use
smart pointers, but for some unknown reason I just don't trust smart
pointers to be smart enough, so do them manually.
Trust you instincts. 'Smart' pointers create more problems than they
solve.
What I normally do is start out any class as a struct if it is POD. As soon
as I need to create an initialization list, I change it to a class and
create a dtor.


In C++ you hardly ever need to implement a copy constructor and an
assignment operator. Both are usually either trivial for value types
or you make them private and leave them unimplemented for object
types.

Best wishes,
Roland Pibinger
Jun 23 '06 #8
In article <pC**************@baesystems.com>,
Richard Herring <ju**@[127.0.0.1]> wrote:
In message <BU*******************@newssvr14.news.prodigy.com> , red floyd
<no*****@here.dude> writes
utab wrote:
Dear all,
How do experienced programmers using this group use the rule of
thumb,namely copy ctor, assignment operator, and dtor.


That's the Rule of *THREE*, not the Rule of thumb.
example
if the class does not need them dont use and define them
use them but dont define them (for future revisions of the class as
placeholders)


If I use them, I define them, even if they're trivial. That way I know
exactly what's happening, rather than relying on compiler magic.
Otherwise, I explicitly hide them.


The compiler is more reliable than I am at keeping track of every single
data member of a large class. If they are trivial, I already know what
the "compiler magic" is, so why add clutter to the definition and risk
getting it wrong?


It can be even worse than that. Defining what would otherwise be
trivial members (copy, assignment or destructor) can lead to a
performance loss. Generic code (such as std::vector) can make
significant optimizations if it knows that its value_type has trivial
special members (which it can detect through the new <type_traits>
library. As soon as you define these special members, they are no
longer trivial (even if they do the same thing as the compiler generated
variant), and generic code must use larger and slower code to ensure
that everything works correctly.

-Howard
Jun 24 '06 #9
In message <11**********************@c74g2000cwc.googlegroups .com>, utab
<um********@gmail.com> writes

utab wrote:
Dear all,

How do experienced programmers using this group use the rule of
thumb,namely copy ctor, assignment operator, and dtor.

example

if the class does not need them dont use and define them

use them but dont define them (for future revisions of the class as
placeholders)

or...

One more resource question on default and value iniliatization, I am
still looking references to read on these topics.

Regards,
I see that thereis still no compromise on this issue. I asked this
question after reading related parts from effective C++. I think that
if no dynamic allocation takes place then it is not wise to use these
because the compiler synthesizes them for you but even then maybe there
could be problems concerning memberwise and bitwise copy.


The problems are usually related to resource ownership: it's not so much
how the low-level copy takes place, but what it means.
Still not an exact clarification, are there others to comment on the
subject?


Another comment: if your class must be copied, but has members whose
semantics mean that you _can't_ use the compiler-generated functions,
consider delegating the problem: either add to the member's class
appropriate copy/assign functions or wrap it in a new class that has the
same effect. Apply the same technique recursively to the members'
members until the non-standard copy semantics are isolated in the
smallest possible space.

--
Richard Herring
Jun 26 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Sam Wilson [Bentley] | last post by:
If you pass a C++ object by value as an argument to a function which has a variable-length argument list (...), the MSVC7 C++ compiler does not call the object's copy constructor and will not...
1
by: Tony Johansson | last post by:
Hello experts! I have this piece of code. No user defined copy constructor exist. AccountForStudent create(long number) { AccountForStudent local(number, 0.0); return local; } int main() {
10
by: utab | last post by:
Dear all, So passing and returning a class object is the time when to include the definition of the copy constructor into the class definition. But if we don't call by value or return by value, ...
12
by: Mark E. Fenner | last post by:
Hello all, I have a code where my inner loop looks like: allNew = for params in cases: newObj = copy(initialObject) newObj.modify(params) allNew.append(newObj) return allNew
0
by: Gonçalo Rodrigues | last post by:
Hi all, I have a single-rooted hierarchy of heap-allocated objects -- call the root Object. These objects are handled via a smart pointer template Reference<T>. Basically, Reference<Tis a...
9
by: blangela | last post by:
2.0 Sample Code class ABC // dummy class used below {}; class Example2 { public: Example2(); // default ctor Example2( const Example2 &); // copy ctor
1
by: blangela | last post by:
3.0 Advanced Topic Addendum There are a few cases where the C++ compiler cannot provide an overloaded assignment operator for your class. If your class contains a const member or/and a...
1
by: petschy | last post by:
hello, i've run into an error when qualifying a copy ctor 'explicit'. the strange thing is that i get a compiler error only if the class is a template and declare the variable as X<Zx = y....
25
by: vikram Bhuskute | last post by:
I have plans to train some students for C in coming weeks. I am badly looking for C programming assignments fot them. Need 1) lots of them per topiic 2) Should be doable for beginners thanks...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.