473,395 Members | 2,713 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,395 software developers and data experts.

conversion operator - beginner's question

In the book, C++ Coding Standards book by Hereb Sutter and Andrei
Alexandrescu, in Item 40 on pages 86-87 viz, "Avoid providing implicit
conversions", the authors have advised the use of named functions that
offer conversions instead of conversion operators.

In page 87, example 2: Errors that work.

class String
{
// ...
public:
operator cons char *(); // deplorable form
};

Assume s1, s2 are 'String's:
int x = s1 -s2; // compiles; undefined behaviour
const char *p = s1 - 5; // compiles; undefined behaviour
....

I am NOT going against the authors in asking the following.
However, as a beginner I just to want to know if conversion operators
should be avoided totally ?
Because, in <istream>, we have operator bool() const; (in the sentry
class)

This helps in
while(cin)
// ...

So here the standard library uses a conversion operator. Are there any
guidelines as to when the conversion operators can be defined ?

Kindly clarify.

I once again state that I am not confronting the authors. I am asking
this question from learner's point of view.

Thanks
V.Subramanian
Nov 29 '07 #1
4 1994
On 2007-11-29 17:25, su**************@yahoo.com, India wrote:
In the book, C++ Coding Standards book by Hereb Sutter and Andrei
Alexandrescu, in Item 40 on pages 86-87 viz, "Avoid providing implicit
conversions", the authors have advised the use of named functions that
offer conversions instead of conversion operators.

In page 87, example 2: Errors that work.

class String
{
// ...
public:
operator cons char *(); // deplorable form
};

Assume s1, s2 are 'String's:
int x = s1 -s2; // compiles; undefined behaviour
const char *p = s1 - 5; // compiles; undefined behaviour
...

I am NOT going against the authors in asking the following.
However, as a beginner I just to want to know if conversion operators
should be avoided totally ?
You should never say never, there are no absolute rules. Though in most
cases it is advisable to follow them, especially if you are a beginner.
But if you know what you are doing then there situations where they can
be useful.
Because, in <istream>, we have operator bool() const; (in the sentry
class)

This helps in
while(cin)
// ...

So here the standard library uses a conversion operator. Are there any
guidelines as to when the conversion operators can be defined ?

Kindly clarify.
One example where they might be useful is when creating proxy-objects,
then it might have a conversion to the object-type it is acting as a
proxy for.

--
Erik Wikström
Nov 29 '07 #2
On Nov 29, 10:59 pm, "Alf P. Steinbach" <al...@start.nowrote:
* subramanian10...@yahoo.com, India:
Because, in <istream>, we have operator bool() const; (in the sentry
class)

The sentry class is just a specification "implementation" detail, a
helper abstraction used to specify the functionality. You will never
use that operator bool() directly. Additionally, the modern templated
standard iostreams are not an example of good design. They're an
example of lack of design and/or bad design. Simply put, if some way of
doing things is employed by standard iostreams, then you know that it's
most probably something to not adopt in your own designs, that it's most
probably something to stay very very clear of, to fear and avoid.
This helps in
while(cin)
// ...

No, what's invoked here is "std::basic_ios<char>::operator void*".

That's still an example of an Evil(TM) way of doing things.

With billions of good ways to do this, it might seem fantastic and
unbelievable that one of the very few really Evil ways ended up in the
standard, sort of like "we really need some more Evil, let's see...",
but such is standardization, and ask me not why: it's a mystery.
So here the standard library uses a conversion operator. Are there any
guidelines as to when the conversion operators can be defined ?

A conversion operator can implement a logical IsA relationship where
inheritance isn't applicable.

Cheers, & hth.,

- Alf
I found the following piece of code in C++ Primer 4th edition by
Stanley Lippman in page 26.

Sales_item trans;

while (std:cin >trans)
// ...

Here, isn't operator bool() called ?

Also let me know what is the correct way of doing the 'while
condition' if it is not a good way of doing.

Kindly clarify.

Thanks
V.Subramanian
Nov 30 '07 #3
su**************@yahoo.com, India wrote:
On Nov 29, 10:59 pm, "Alf P. Steinbach" <al...@start.nowrote:
>* subramanian10...@yahoo.com, India:
Because, in <istream>, we have operator bool() const; (in the sentry
class)

The sentry class is just a specification "implementation" detail, a
helper abstraction used to specify the functionality. You will never
use that operator bool() directly. Additionally, the modern templated
standard iostreams are not an example of good design. They're an
example of lack of design and/or bad design. Simply put, if some way of
doing things is employed by standard iostreams, then you know that it's
most probably something to not adopt in your own designs, that it's most
probably something to stay very very clear of, to fear and avoid.
This helps in
while(cin)
// ...

No, what's invoked here is "std::basic_ios<char>::operator void*".

That's still an example of an Evil(TM) way of doing things.

With billions of good ways to do this, it might seem fantastic and
unbelievable that one of the very few really Evil ways ended up in the
standard, sort of like "we really need some more Evil, let's see...",
but such is standardization, and ask me not why: it's a mystery.
So here the standard library uses a conversion operator. Are there any
guidelines as to when the conversion operators can be defined ?

A conversion operator can implement a logical IsA relationship where
inheritance isn't applicable.

Cheers, & hth.,

- Alf

I found the following piece of code in C++ Primer 4th edition by
Stanley Lippman in page 26.

Sales_item trans;

while (std:cin >trans)
// ...

Here, isn't operator bool() called ?
Nope. As Alf said, the conversion involved goes to void*

Also let me know what is the correct way of doing the 'while
condition' if it is not a good way of doing.
Given the way iostreams handle things, this is a correct way to write the
while loop. However, that does not imply that it was a good idea to make
the standard streams support conversion to void*.
Best

Kai-Uwe Bux
Nov 30 '07 #4
On Nov 29, 5:25 pm, "subramanian10...@yahoo.com, India"
<subramanian10...@yahoo.comwrote:
In the book, C++ Coding Standards book by Hereb Sutter and Andrei
Alexandrescu, in Item 40 on pages 86-87 viz, "Avoid providing implicit
conversions", the authors have advised the use of named functions that
offer conversions instead of conversion operators.
In page 87, example 2: Errors that work.
class String
{
// ...
public:
operator cons char *(); // deplorable form
};
Assume s1, s2 are 'String's:
int x = s1 -s2; // compiles; undefined behaviour
const char *p = s1 - 5; // compiles; undefined behaviour
...
I am NOT going against the authors in asking the following.
However, as a beginner I just to want to know if conversion operators
should be avoided totally ?
Pretty much so. About the only general exception I can think of
is proxies, which only work because of implcit conversions.

Otherwise, there are a few special cases; as a beginner, you
probably don't have to worry much about these, however.
Because, in <istream>, we have operator bool() const; (in the
sentry class)
This helps in
while(cin)
// ...
You're mixing up two things.

In istream and ostream, there is a nested sentry class, which
has an implicit conversion operator to bool. It is used when
writing << and >operators which go directly to the streambuf
(rather than decomposing the operation into << or >on simpler
types). The "standard" idiom here is:

std::ostream&
operator<<( std::ostream& dest, SomeType const& obj )
{
std::ostream::sentry s( dest ) ;
if ( s ) {
// do it...
}
return dest ;
}

Obviously, other alternatives (not involving the explicit
conversion) are possible, but in this (special) case, it really
doesn't matter; the class is designed to be used in one specific
case, and only in one specific case.

Both istream and ostream derive from ios, and ios has an
implicit conversion to void*. This supports idioms such as:
while ( std::cin >someVariable ) ...
or
while ( std::getline( std::cin, line ) ) ...
, the void* acting here as a bool. (The reason bool wasn't used
was because bool is an integral type, and >and << are defined
over it. So in some cases, you could get some strange overload
resolutions, rather than an error from the compiler.)

Whether this is good design or not is very debatable; as a
general rule, it is NOT a good idea to both modify program state
and have flow control in a single line/statement. Something
like:

std::cin >someVariable ;
while ( std::cin.succeeded() ) {
// ...
std::cin >someVariable ;
}

would arguably be better. Similarly, one would like to be able
to use the stream for initialization, and not just to modify
existing variables.

All one can say here is that I/O, in general, is hard, and that
iostreams works a lot better than anything else anyone has
proposed (or what's available in other languages). And the
idiom is ubiquious enough that it doesn't cause problems in
practice; everyone knows it and expects it. Since that's highly
unlikely to be the case for any class you write, you should
probably avoid such things.
So here the standard library uses a conversion operator.
The standard library does a lot of things that aren't
necessarily good practice. (The iostream's part is probably one
of the better parts of it.) But a standard library also obeys
different rules than your code, at least partially. It will be
ubiquious, and it will be well known. Which means that code
using it idiomatically will be readable, regardless of the
conventions. Your code won't have those advantages.
Are there any guidelines as to when the conversion operators
can be defined ?
Yes. Except for proxies and if you're designing the standard
library of a major language, don't. (As with all rules, there
are exceptions. But unless it is obvious that the case must be
an exception, it probably isn't.)

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Nov 30 '07 #5

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

Similar topics

3
by: BigMan | last post by:
Here is a piece of code: #include <memory> using namespace std; template< typename SomeType > void f(auto_ptr_ref< SomeType >) { }
4
by: Master of C++ | last post by:
Hi, This is a simple question. In the following example, .. class Vector .. { .. private: .. int *Numbers; .. int vLength; ..
5
by: Vijai Kalyan | last post by:
Hello, I have come back to C++ after a couple of years with Java so I am quite rusty and this question may seem poor: My platform is Windows XP with MSVC 7.1. I have a class with a...
16
by: frs | last post by:
See example below: Why does the output of 'a' work and the output of 'b' fails to compile? Is there a way to write class 'something' so that 'b' converts correctly by default? (include iostream,...
7
by: Michael Lehn | last post by:
Hi, I have a question regarding the conversion of objects. When is the conversion done by the constructor and when by the operator. My feeling tells me that the constructor is preferred. But...
47
by: rawCoder | last post by:
Hi, Just wanted to know if there is any speed difference between VB conversion Keywords like CInt, Clng, CStr, CDbl, CBool etc. ..NETs Convert.To<...> methods. And which is better to be...
1
by: hunter hou | last post by:
Hello,Please look at the following code(from C++ in a nutshell) and my questions.Thanks,***Hunter... typedef void (*strproc)(const char*); void print(const char* str) { std::cout << "const...
10
by: Jeroen | last post by:
Hi guys, Just another question. Suppose I have 2 classes (incomplete code): class A { A(const B& b); A& operator = (const A& a); }; class B {
4
by: zaeminkr | last post by:
I got a good answer here I have still confusing part. I have two very simple classes class DRect { private : double x0, y0, x1, y1; public : DRect(double a, double b, double c, double d) :...
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
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...
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...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

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.