473,379 Members | 1,520 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,379 software developers and data experts.

Implicit conversion is evil?

In a newer version of a chess program I am writing, I have created classes
that are (more or less) drop in replacements for things that used to be
plain old integer or enumerated variables (colors, piece types, squares,
etc.). To accomplish this, I used implicit conversions. For instance, a
color used to be:

typedef int Color;
// and a few constants...

Now a color is (paraphrased):

class Color {
private:
int color;
public:
// ...
operator int () { return color; }
// ...
};

The reason for moving to these simple classes (which are just int wrappers)
was so that I could verify the validity of the data. For instance:

operator int () { assert(color == white || color == black); return color; }

However, I've been told by several people that implicit conversions are
"evil". I can see how they could be the source of very nasty bugs for a more
hefty class, but what about for something as simple as these classes which
are nothing more than int wrappers? The way I'm using them, they kind of
_are_ int's, so how could it cause bugs if there is an implicit conversion?

Would it be possible for an instance of Color to be implicitly converted and
not validate its internals any longer? If that is possible, I could foresee
a potentially hard to find bug. That would give a sense of false security,
and I'd probably look for the bug elsewhere, assuming (incorrectly) that my
color was still valid since the assert didn't fail.
Jul 19 '05 #1
2 3061
"Russell Reagan" <rr*****@attbi.com> wrote...
In a newer version of a chess program I am writing, I have created classes
that are (more or less) drop in replacements for things that used to be
plain old integer or enumerated variables (colors, piece types, squares,
etc.). To accomplish this, I used implicit conversions. For instance, a
color used to be:

typedef int Color;
// and a few constants...

Now a color is (paraphrased):

class Color {
private:
int color;
public:
// ...
operator int () { return color; }
// ...
};

The reason for moving to these simple classes (which are just int wrappers) was so that I could verify the validity of the data. For instance:

operator int () { assert(color == white || color == black); return color; }
However, I've been told by several people that implicit conversions are
"evil". I can see how they could be the source of very nasty bugs for a more hefty class, but what about for something as simple as these classes which
are nothing more than int wrappers? The way I'm using them, they kind of
_are_ int's, so how could it cause bugs if there is an implicit conversion?
Would it be possible for an instance of Color to be implicitly converted and not validate its internals any longer? If that is possible, I could foresee a potentially hard to find bug. That would give a sense of false security,
and I'd probably look for the bug elsewhere, assuming (incorrectly) that my color was still valid since the assert didn't fail.


Let me start with this statement: no feature in the language is
"evil" per se. Implicit conversions are features of the language,
therefore they are not "evil" by themselves. They, just like many
other features of the language, carry some responsibility and can
be mis-used.

Let me continue with this question: there is nothing in your post
that demonstrates the need to have the conversion operator. Do you
use the value to do arithmetic? If not, why would you need to have
the conversion to an arithmetic type? Do you use those "Color",
"Piece", etc., types to index anything? Then usually you don't
need to convert to int in those types, you _could_ limit such
conversion to the module (function, method) where the numeric
value of an object is used. In all other places it should be enough
to use the enumerated values (symbolic constants).

As soon as you can answer this question, you will be on your way to
better understanding of the conversion necessities and probably that
they are unneeded in your model.

Victor
Jul 19 '05 #2
"Victor Bazarov" <v.********@comAcast.net> wrote
Do you use those "Color",
"Piece", etc., types to index anything?
Yes. I use colors and piece types to index piece lists by color and piece
type, and squares are nothing but indexes into the board.

you _could_ limit such
conversion to the module (function, method) where the numeric
value of an object is used.


I've been considering writing an explicit conversion member function and
letting the other functions call it as needed. This is probably best since
there really isn't any need for implicit conversion, especially at the costs
of unforeseen bugs. The implicit conversion was more of a syntactic sugar
than anything.
Jul 19 '05 #3

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

Similar topics

1
by: Christophe Poucet | last post by:
Hellom I have an issue with implicit conversions. Apparently when one calls an operator on a class Y which has a conversion operator to class X which has the operator . Sadly it will not do...
11
by: Steve Gough | last post by:
Could anyone please help me to understand what is happening here? The commented line produces an error, which is what I expected given that there is no conversion defined from type double to type...
9
by: Girish | last post by:
Im trying to understand implicit type conversions from object -> string and vice versa. I have two classes, one Driver and one called StringWrapper. These are just test classes that try and...
11
by: Aaron Queenan | last post by:
Given the classes: class Class { public static implicit operator int(Class c) { return 0; } } class Holder
36
by: Chad Z. Hower aka Kudzu | last post by:
I have an implicit conversion set up in an assembly from a Stream to something else. In C#, it works. In VB it does not. Does VB support implicit conversions? And if so any idea why it would work...
10
by: Pieter Breed | last post by:
Hi All, Please excuse me, but the bulk of my post will be a code post. It describes some weirdness with regards to the implicit casting operator. The crux of the problem is this: I want to...
3
by: utab | last post by:
Dear all, I was trying to write a more complex program, and while searching for sth in my reference C++ primer, by Lippman. I had a question in the mind, see the code below #include <string>...
1
by: drop | last post by:
Hi all, I'd like to know if it's possible to declare an implicit type conversion for when I use declarative Synthax in html. For example, when I have the DropDownList, I can declatively set...
8
by: jonpb | last post by:
Hi, Is it possible to define a implicit operator from base to derived types in C#? I have a Point class and would like to derive a Vector class from it and add a couple new vector related...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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...

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.