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

Creating an object that is read from an input stream.

I want to allow objects of my class to be read from an input stream. I am
having trouble with the implementation. Here are the different approaches I
have tried:

// Version 1.0 - Default constructors
class MyClass
{
Foo foo; // foo and bar require default constructors
Bar bar;
public:
// default constructor for MyClass
MyClass() // foo and bar are default initialised
{
}

std::istream &extract(std::istream &is)
{
if (!(is >> foo))
return is;
if (!(is >> bar))
return is;
return is;
}
};

std::istream &operator>>(std::istream &is, MyClass &object)
{
return is >> object;
}

// Version 2.0 - std::istream constructor argument, default constructors and
exceptions
class MyClass
{
Foo foo; // foo and bar require default constructors
Bar bar;
public:
MyClass(std::istream &is) // foo and bar are default initialised
{
if (!(is >> foo))
throw MyException;
if (!(is >> bar))
throw MyException;
}
};

// Version 3.0 - Shared pointers
class MyClass
{
Foo foo;
Bar bar;
public:
MyClass(Foo foo_, Bar bar_) : foo(foo_), bar(bar_) { }
};

std::istream &operator>>(std::istream &is, SharedPtr<MyClass> &object_ptr)
{
SharedPtr<Foo> foo_ptr;
if (!(is >> foo_ptr))
return is;
Foo foo = *foo_ptr;

SharedPtr<Bar> bar_ptr;
if (!(is >> bar_ptr))
return is;
Bar bar = *bar_ptr;

object_ptr = new MyClass(foo, bar);
return is;
}

// Version 4.0 - Static read methods and exceptions
class MyClass
{
Foo foo
Bar bar;
public:
MyClass(Foo foo_, Bar bar_) : foo(foo_), bar(bar_) { }

static MyClass read(std::istream &is);
};

MyClass MyClass::read(std::istream &is)
{
try {
Foo foo = Foo::read(is);
Bar bar = Bar::read(is);
return MyClass(foo, bar);
} catch (FooException e) {
throw MyException(e.get_desc());
} catch (BarException e) {
throw MyException(e.get_desc());
}
}

The third version is the only approach that does not involve default
constructors or exceptions. How else can I write my class to allow it's
objects to be read from a stream? Thanks.
Jul 22 '05 #1
21 2471
I wrote version 2.0 wrong. Here is what I really meant to write:

// Version 2.0 - std::istream constructor argument and exceptions
class MyClass
{
Foo foo;
Bar bar;
public:
MyClass(std::istream &is) : foo(is), bar(is)
{
}
};

This makes version 4.0 redundant.
Jul 22 '05 #2
"Jason Heyes" <ge******@optusnet.com.au> wrote in message
news:3f**********************@news.optusnet.com.au ...
I want to allow objects of my class to be read from an input stream. I am
having trouble with the implementation. Here are the different approaches I have tried:

// Version 1.0 - Default constructors
class MyClass
{
Foo foo; // foo and bar require default constructors
Bar bar;
public:
// default constructor for MyClass
MyClass() // foo and bar are default initialised
{
}

std::istream &extract(std::istream &is)
{
if (!(is >> foo))
return is;
if (!(is >> bar))
return is;
return is;
}
};

std::istream &operator>>(std::istream &is, MyClass &object)
{
return is >> object;
This function does an infinite recursive call. Did you mean
object.extract(is)?
}
Why not make this function a friend of the class, and let it do what the
class extract function does, and get rid of the extract function? Why take
two steps when you can take one?

// Version 2.0 - std::istream constructor argument, default constructors and exceptions
class MyClass
{
Foo foo; // foo and bar require default constructors
Bar bar;
public:
MyClass(std::istream &is) // foo and bar are default initialised
{
if (!(is >> foo))
throw MyException;
if (!(is >> bar))
throw MyException;
}
};
With this, you can't read into an existing object.

// Version 3.0 - Shared pointers
class MyClass
{
Foo foo;
Bar bar;
public:
MyClass(Foo foo_, Bar bar_) : foo(foo_), bar(bar_) { }
};

std::istream &operator>>(std::istream &is, SharedPtr<MyClass> &object_ptr)
{
SharedPtr<Foo> foo_ptr;
if (!(is >> foo_ptr))
return is;
Foo foo = *foo_ptr;

SharedPtr<Bar> bar_ptr;
if (!(is >> bar_ptr))
return is;
Bar bar = *bar_ptr;

object_ptr = new MyClass(foo, bar);
return is;
}
All this looks like a lot of trouble.

// Version 4.0 - Static read methods and exceptions
class MyClass
{
Foo foo
Bar bar;
public:
MyClass(Foo foo_, Bar bar_) : foo(foo_), bar(bar_) { }

static MyClass read(std::istream &is);
};

MyClass MyClass::read(std::istream &is)
{
try {
Foo foo = Foo::read(is);
Bar bar = Bar::read(is);
return MyClass(foo, bar);
} catch (FooException e) {
throw MyException(e.get_desc());
} catch (BarException e) {
throw MyException(e.get_desc());
}
}


Again, you can't read into an existing object.

Of all these, version 1 (suitably modified) looks the best to me, but maybe
you have special reasons for preferring another.

DW

Jul 22 '05 #3
"Jason Heyes" <ge******@optusnet.com.au> wrote in message
news:3f**********************@news.optusnet.com.au ...
I want to allow objects of my class to be read from an input stream. I am
having trouble with the implementation. Here are the different approaches I have tried:

// Version 1.0 - Default constructors
class MyClass
{
Foo foo; // foo and bar require default constructors
Bar bar;
public:
// default constructor for MyClass
MyClass() // foo and bar are default initialised
{
}

std::istream &extract(std::istream &is)
{
if (!(is >> foo))
return is;
if (!(is >> bar))
return is;
return is;
}
};

std::istream &operator>>(std::istream &is, MyClass &object)
{
return is >> object;
}

// Version 2.0 - std::istream constructor argument, default constructors and exceptions
class MyClass
{
Foo foo; // foo and bar require default constructors
Bar bar;
public:
MyClass(std::istream &is) // foo and bar are default initialised
{
if (!(is >> foo))
throw MyException;
if (!(is >> bar))
throw MyException;
}
};

// Version 3.0 - Shared pointers
class MyClass
{
Foo foo;
Bar bar;
public:
MyClass(Foo foo_, Bar bar_) : foo(foo_), bar(bar_) { }
};

std::istream &operator>>(std::istream &is, SharedPtr<MyClass> &object_ptr)
{
SharedPtr<Foo> foo_ptr;
if (!(is >> foo_ptr))
return is;
Foo foo = *foo_ptr;

SharedPtr<Bar> bar_ptr;
if (!(is >> bar_ptr))
return is;
Bar bar = *bar_ptr;

object_ptr = new MyClass(foo, bar);
return is;
}

// Version 4.0 - Static read methods and exceptions
class MyClass
{
Foo foo
Bar bar;
public:
MyClass(Foo foo_, Bar bar_) : foo(foo_), bar(bar_) { }

static MyClass read(std::istream &is);
};

MyClass MyClass::read(std::istream &is)
{
try {
Foo foo = Foo::read(is);
Bar bar = Bar::read(is);
return MyClass(foo, bar);
} catch (FooException e) {
throw MyException(e.get_desc());
} catch (BarException e) {
throw MyException(e.get_desc());
}
}

The third version is the only approach that does not involve default
constructors or exceptions. How else can I write my class to allow it's
objects to be read from a stream? Thanks.


When I'm writing software I find myself constantly asking, "what the heck
does A have to do with B?" In your case, what does MyClass have to do with
streams? I understand that I don't really know what MyClass is, but I'll bet
it doesn't have anything to do with streams. Thus I would be reluctant to
introduce streams into a constructor or built in function.

The obvious way is to use what I think of (non-standard term) a "delayed
constructor":

class MyClass
{
private:
Foo m_foo;
Bar m_bar;
public:
MyClass() {}
void set(const Foo &i_foo, const Bar &i_bar) {m_foo = i_foo; m_bar =
i_bar;}
...
};

The process for initialization would then be to read a temporary foo and bar
using software not shown here and then call set. Of course this might be
prohibitively expensive if Foo and Bar are large objects. (But do some run
time studies before you give up! A good optimizing compiler can sometimes
really surprise you.) If copying is really too expensive there may be
alternatives. For instance, lets say Foo is a actually a potentially large
std::vector. Then I would have a member function like this:

template <typename ITER>
set_foo(ITER first, ITER last) {std::copy(first, last,
std::back_inserter(m_foo);}

Again, no specific reference to a stream although trivially usable with a
stream using istream_iterator<>.

If all this fails I would fall back to Version 1.0. That seems like a
practical solution which mixes the concepts of MyClass and streams but at
least gets the job done efficiently.

--
Cy
http://home.rochester.rr.com/cyhome/
Jul 22 '05 #4
"David White" <no@email.provided> wrote in message
news:Ps******************@nasal.pacific.net.au...
This function does an infinite recursive call. Did you mean
object.extract(is)?
Oops. Yes I meant to write

return object.extract(is);
Why not make this function a friend of the class, and let it do what the
class extract function does, and get rid of the extract function? Why take
two steps when you can take one?
My compiler has always had problems with friend functions that overload >>.
I have gotten into the habit of writing extractors.
With this, you can't read into an existing object.
You can use the copy constructor to implement operator>> like so:

std::istream &operator>>(std::istream &is, MyClass &object)
{
object = MyClass(is);
return is;
}

You might want to catch the exceptions thrown by
MyClass::MyClass(std::istream &), writing:

std::istream &operator>>(std::istream &is, MyClass &object)
{
try {
object = MyClass(is);
} catch (MyException e) { }
return is;
}

This allows you to read into an object.
All this looks like a lot of trouble.

Of all these, version 1 (suitably modified) looks the best to me, but maybe you have special reasons for preferring another.


I would use version 1.0 all the time if I could gaurentee that every class
had a default constructor. Here is an idea that I had:

// rename MyClass to MyClass_base
class MyClass_base
{
Foo foo;
Bar bar;
public:
MyClass_base(Foo foo_, Bar bar_) : foo(foo_), bar(bar_) { }

Foo method(Bar bar) { /* do something */ }

Foo const_method(Bar bar) const { /* do something */ }
};

// use new class MyClass that has a MyClass_base pointer
class MyClass
{
SharedPtr<MyClass_base> base;
public:
MyClass() { } // base is initialised to a null pointer

// mirror every constructor in MyClass_base
MyClass(Foo foo, Bar bar) : base(foo, bar) { }

// mirror every method in MyClass_base
Foo method(Bar bar)
{
base.make_unique(); // copy-on-write
return base->method(bar);
}

Foo const_method(Bar bar) const
{
return base->const_method(bar);
}
};

std::istream &operator>>(std::istream &is, MyClass &object)
{
Foo foo;
if (!(is >> foo))
return is;

Bar bar;
if (!(is >> bar))
return is;

object = MyClass(foo, bar);
return is;
}

If only there was a way to make this generic. It is too much work to mirror
every method of MyClass. I would rather implement a default constructor and
use version 1.0.
Jul 22 '05 #5
Before going any further I think it's necessary to know exactly what you
want to do, i.e., what you have to begin with and what you want to end up
with. I hate even mentioning anything MS-related here, but a lot of what you
are saying reminds me of MFC serialization (to which the CArchive class is
central), which enables you to serialize objects of classes derived from
CObject. I believe it can also handle members that are pointers to
serialized objects, including multiple pointers to the same object.
Basically, it builds up the same object network that was previously saved.
Of course, it has its limitations (a huge one being that everything must be
derived from CObject), but if this sounds like what you are after then it's
worth looking at to get ideas. I haven't looked at MFC serialization since
MFC version 1 or 2. It might be very different now.

DW

Jul 22 '05 #6
"David White" <no@email.provided> wrote in message
news:OQ******************@nasal.pacific.net.au...
Before going any further I think it's necessary to know exactly what you
want to do, i.e., what you have to begin with and what you want to end up
with. I hate even mentioning anything MS-related here, but a lot of what you are saying reminds me of MFC serialization (to which the CArchive class is
central), which enables you to serialize objects of classes derived from
CObject. I believe it can also handle members that are pointers to
serialized objects, including multiple pointers to the same object.
Basically, it builds up the same object network that was previously saved.
Of course, it has its limitations (a huge one being that everything must be derived from CObject), but if this sounds like what you are after then it's worth looking at to get ideas. I haven't looked at MFC serialization since
MFC version 1 or 2. It might be very different now.

DW


I don't want full-fledged serialisation or MFC until I absolutely need it.
All I really want right now is to read and write objects that do not have
pointer-type members and do not necessarily have an accessible default
constructor. Let me try to give a simple example. I will use the mechanism
in version 2.0 that I wrote before (istreams and exceptions) to achieve
serialisation.

class Box
{
int left, right, up, down;

int read_int(std::istream &is)
{
int num;
if (!(is >> num))
throw ReadException;
return num;
}

public:
Box(std::istream &is) : left(read_int(is)), right(read_int(is)),
up(read_int(is)), down(read_int(is)) { }

std::ostream &save(std::ostream &os)
{ return os << left << right << up << down; }

int get_area() const { return (right - left) * (up - down); }
};

// program that inputs and outputs a box
// the area of the box is shown
int main()
{
Box *mybox_ptr;
try {
mybox_ptr = new Box(cin);
} catch (ReadException e) {
return 0;
}
Box mybox = *mybox_ptr;

cout << mybox << endl;
cout << mybox.get_area() << endl;
return 0;
}

The main function shows the difficulty. You can't write

Box box;
if (!(cin >> box))
return 0;

Instead you must call the istream constructor and catch ReadException. I
find this counterintuitive to C++ and annoying. Here is another design that
might be an improvement. It relies on a private default constructor, some
generic methods and a custom reference class.

template <class T>
std::istream &operator>>(std::istream &is, SharedPtr<T> &ptr)
{
T object; // default constructor must be accessible
if (!(is >> object))
return is;
ptr = new T(object);
return is;
}

template <class T>
std::ostream &operator<<(std::ostream &os, const SharedPtr<T> &ptr)
{
return os << *ptr;
}
class Box
{
int left, right, up, down;

// default constructor is private
Box() { }

public:
int get_area() const { return (right - left) * (up - down); }

std::istream &extract(std::istream &is)
{ return is >> left >> right >> up >> down; }

std::ostream &insert(std::ostream &os)
{ return os << left << right << up << down; }

// grant the extractor access to default constructor
friend std::istream &operator>>(std::istream &is, SharedPtr<Box> &box);
};

std::istream &operator>>(std::istream &is, Box &box)
{ return box.extract(is); }

std::ostream &operator<<(std::ostream &os, Box &box)
{ return box.insert(os); }
// box reference
class BoxRef
{
SharedPtr<Box> ptr;

public:
int get_area() const { return ptr->get_area(); }

std::istream &extract(std::istream &is) { return is >> ptr; }
std::ostream &insert(std::ostream &os) const { return os << ptr; }
};

std::istream &operator>>(std::istream &is, BoxRef &box)
{ return box.extract(is); }

std::ostream &operator<<(std::ostream &os, const BoxRef &box)
{ return box.insert(os); }
// program that inputs and outputs a box
// the area of the box is shown
int main()
{
BoxRef mybox;
if (!(cin >> mybox))
return 0;

cout << mybox << endl;
cout << mybox.get_area() << endl;
return 0;
}
Sorry for all the code. What do you think? Is this a practical solution?
Jul 22 '05 #7
"Jason Heyes" <ge******@optusnet.com.au> wrote in message
news:3f**********************@news.optusnet.com.au ...
"David White" <no@email.provided> wrote in message
news:OQ******************@nasal.pacific.net.au...
Before going any further I think it's necessary to know exactly what you
want to do, i.e., what you have to begin with and what you want to end up with. I hate even mentioning anything MS-related here, but a lot of what you
are saying reminds me of MFC serialization (to which the CArchive class is central), which enables you to serialize objects of classes derived from
CObject. I believe it can also handle members that are pointers to
serialized objects, including multiple pointers to the same object.
Basically, it builds up the same object network that was previously saved. Of course, it has its limitations (a huge one being that everything must

be
derived from CObject), but if this sounds like what you are after then

it's
worth looking at to get ideas. I haven't looked at MFC serialization since MFC version 1 or 2. It might be very different now.

DW


I don't want full-fledged serialisation or MFC until I absolutely need it.
All I really want right now is to read and write objects that do not have
pointer-type members and do not necessarily have an accessible default
constructor. Let me try to give a simple example. I will use the mechanism
in version 2.0 that I wrote before (istreams and exceptions) to achieve
serialisation.

class Box
{
int left, right, up, down;

int read_int(std::istream &is)
{
int num;
if (!(is >> num))
throw ReadException;
return num;
}

public:
Box(std::istream &is) : left(read_int(is)), right(read_int(is)),
up(read_int(is)), down(read_int(is)) { }

std::ostream &save(std::ostream &os)
{ return os << left << right << up << down; }

int get_area() const { return (right - left) * (up - down); }
};

// program that inputs and outputs a box
// the area of the box is shown
int main()
{
Box *mybox_ptr;
try {
mybox_ptr = new Box(cin);
} catch (ReadException e) {
return 0;
}
Box mybox = *mybox_ptr;

cout << mybox << endl;
cout << mybox.get_area() << endl;
return 0;
}

The main function shows the difficulty. You can't write

Box box;
if (!(cin >> box))
return 0;

Instead you must call the istream constructor and catch ReadException. I
find this counterintuitive to C++ and annoying. Here is another design

that might be an improvement. It relies on a private default constructor, some
generic methods and a custom reference class.

template <class T>
std::istream &operator>>(std::istream &is, SharedPtr<T> &ptr)
{
T object; // default constructor must be accessible
if (!(is >> object))
return is;
ptr = new T(object);
return is;
}

template <class T>
std::ostream &operator<<(std::ostream &os, const SharedPtr<T> &ptr)
{
return os << *ptr;
}
class Box
{
int left, right, up, down;

// default constructor is private
Box() { }

public:
int get_area() const { return (right - left) * (up - down); }

std::istream &extract(std::istream &is)
{ return is >> left >> right >> up >> down; }

std::ostream &insert(std::ostream &os)
{ return os << left << right << up << down; }

// grant the extractor access to default constructor
friend std::istream &operator>>(std::istream &is, SharedPtr<Box> &box); };

std::istream &operator>>(std::istream &is, Box &box)
{ return box.extract(is); }

std::ostream &operator<<(std::ostream &os, Box &box)
{ return box.insert(os); }
// box reference
class BoxRef
{
SharedPtr<Box> ptr;

public:
int get_area() const { return ptr->get_area(); }

std::istream &extract(std::istream &is) { return is >> ptr; }
std::ostream &insert(std::ostream &os) const { return os << ptr; }
};

std::istream &operator>>(std::istream &is, BoxRef &box)
{ return box.extract(is); }

std::ostream &operator<<(std::ostream &os, const BoxRef &box)
{ return box.insert(os); }
// program that inputs and outputs a box
// the area of the box is shown
int main()
{
BoxRef mybox;
if (!(cin >> mybox))
return 0;

cout << mybox << endl;
cout << mybox.get_area() << endl;
return 0;
}
Sorry for all the code. What do you think? Is this a practical solution?


Jason-

This is what I meant in a previous post about not mixing up different
concepts. What does a Box have to do with streams? Nothing. Consider:

#include <iostream>
#include <fstream>

class Box
{
private:
int m_left, m_right, m_up, m_down;

public:
Box() {}

Box(int i_left, int i_right, int i_up, int i_down) :
m_left(i_left), m_right(i_right), m_up(i_up), m_down(i_down) {}

int left() const {return m_left;}

int right() const {return m_right;}

int up() const {return m_up;}

int down() const {return m_down;}
};

std::istream &
operator >> (std::istream &istr, Box &b)
{
int i_left, i_right, i_up, i_down;
istr >> i_left >> i_right >> i_up >> i_down;
b = Box(i_left, i_right, i_up, i_down);
return istr;
}

int main()
{
Box b;
std::ifstream ifs("box_numbers.txt");
ifs >> b;
if (!ifs)
{
std::cout << "oops\n";
return 1;
}
std::cout << b.left() << ' ' << b.right() << ' '
<< b.up() << ' ' << b.down() << '\n';
}

As you can see, in C++ it is easy to separate I/O streams from the objects
they work on. This is basically how std::complex works, for instance,
although in that case the class was templated and wide character streams had
to be implemented. Note that the error handling here is just the same as it
might be with any other stream operation -- the fact that it happens to be a
Box shouldn't require special treatment.

Cy
Jul 22 '05 #8
"Cy Edmunds" <ce******@spamless.rochester.rr.com> wrote in message
news:%W****************@twister.nyroc.rr.com...
This is what I meant in a previous post about not mixing up different
concepts. What does a Box have to do with streams? Nothing. Consider:

#include <iostream>
#include <fstream>

class Box
{
private:
int m_left, m_right, m_up, m_down;

public:
Box() {}

Box(int i_left, int i_right, int i_up, int i_down) :
m_left(i_left), m_right(i_right), m_up(i_up), m_down(i_down) {}

int left() const {return m_left;}

int right() const {return m_right;}

int up() const {return m_up;}

int down() const {return m_down;}
};

std::istream &
operator >> (std::istream &istr, Box &b)
{
int i_left, i_right, i_up, i_down;
istr >> i_left >> i_right >> i_up >> i_down;
b = Box(i_left, i_right, i_up, i_down);
return istr;
}

int main()
{
Box b;
std::ifstream ifs("box_numbers.txt");
ifs >> b;
if (!ifs)
{
std::cout << "oops\n";
return 1;
}
std::cout << b.left() << ' ' << b.right() << ' '
<< b.up() << ' ' << b.down() << '\n';
}

As you can see, in C++ it is easy to separate I/O streams from the objects
they work on. This is basically how std::complex works, for instance,
although in that case the class was templated and wide character streams had to be implemented. Note that the error handling here is just the same as it might be with any other stream operation -- the fact that it happens to be a Box shouldn't require special treatment.

Cy


The Box class has a default constructor that leaves it's members undefined.
Therefore the Box object created in main is not valid until

ifs >> b;

occurs. If anyone uses the Box object before that line, it will lead to
unexpected results.

I don't see the point of the other constructor. Why not write:
class Box
{
int left, right, up, down;
public:
Box() { }
friend std::istream &operator>>(std::istream &is, Box &box);
};

std::istream &operator>>(std::istream &is, Box &box)
{
return is >> box.left >> box.right >> box.up >> box.down;
}

This way you don't need the other constructor. You could also write:

class Box
{
int left, right, up, down;
public:
Box() { }

std::istream &extract(std::istream &is)
{
return is >> left >> right >> up >> down;
}
};

std::istream &operator>>(std::istream &is, Box &box)
{ return box.extract(is); }
The real problem as I see it is to get around the default constructor. You
can make the default constructor private but that still allows invalid
objects to exist. Here is what I was thinking:
class Box
{
int left, right, up, down;

Box(int left_, int right_, int up_, int down_) :
left(left_), right(right_), up(up_), down(down_)
{ }

public:
int get_area() const { return (right - left) * (up - down); }

// reads a new box
static Box *create(std::istream &is);

std::istream &extract(std::istream &is)
{
int left, right, up, down;
if (!(is >> left >> right >> up >> down))
return is; // this box is valid even when input fails
*this = Bar(left, right, up, down);
return is;
}

std::ostream &insert(std::ostream &os) const
{ return os << left << right << up << down; }
};

// reads a new box
Box *Box::create(std::istream &is)
{
int left, right, up, down;
if (!(is >> left >> right >> up >> down))
return 0;
return new Box(left, right, up, down);
}

// reads into an old box
std::istream &operator>>(std::istream &is, Box &box)
{ return box.extract(is); }

std::ostream &operator<<(std::istream &os, const Box &box)
{ return box.insert(os); }

class BoxRef
{
SharedPtr<Box> ptr;

public:
int get_area() const { return ptr->get_area(); }

std::istream &extract(std::istream &is)
{
if (ptr) {
ptr.make_unique();
return is >> *ptr;
}

Box *new_ptr = Box::create(is);
if (!new_ptr)
return is;

ptr = new_ptr;
return is;
}

std::ostream &insert(std::ostream &os) const
{ return os << *ptr; }
};

std::istream &operator>>(std::istream &is, BoxRef &ref)
{ return ref.extract(is); }

std::ostream &operator<<(std::ostream &os, const BoxRef &ref)
{ return ref.insert(os); }

int main()
{
BoxRef mybox;
if (!(std::cin >> mybox))
return 1;
std::cout << mybox.get_area() << std::endl;
std::cout << mybox << std::endl;
return 0;
}
At no point in time does an invalid Box object exist. Instead we allow a
null reference to exist and then we read into it. What do you think?
Jul 22 '05 #9
"Jason Heyes" <ge******@optusnet.com.au> wrote in message
news:3f**********************@news.optusnet.com.au ...
"Cy Edmunds" <ce******@spamless.rochester.rr.com> wrote in message
news:%W****************@twister.nyroc.rr.com...
This is what I meant in a previous post about not mixing up different
concepts. What does a Box have to do with streams? Nothing. Consider:

#include <iostream>
#include <fstream>

class Box
{
private:
int m_left, m_right, m_up, m_down;

public:
Box() {}

Box(int i_left, int i_right, int i_up, int i_down) :
m_left(i_left), m_right(i_right), m_up(i_up), m_down(i_down) {}

int left() const {return m_left;}

int right() const {return m_right;}

int up() const {return m_up;}

int down() const {return m_down;}
};

std::istream &
operator >> (std::istream &istr, Box &b)
{
int i_left, i_right, i_up, i_down;
istr >> i_left >> i_right >> i_up >> i_down;
b = Box(i_left, i_right, i_up, i_down);
return istr;
}

int main()
{
Box b;
std::ifstream ifs("box_numbers.txt");
ifs >> b;
if (!ifs)
{
std::cout << "oops\n";
return 1;
}
std::cout << b.left() << ' ' << b.right() << ' '
<< b.up() << ' ' << b.down() << '\n';
}

As you can see, in C++ it is easy to separate I/O streams from the objects
they work on. This is basically how std::complex works, for instance,
although in that case the class was templated and wide character streams had
to be implemented. Note that the error handling here is just the same as

it
might be with any other stream operation -- the fact that it happens to be

a
Box shouldn't require special treatment.

Cy


The Box class has a default constructor that leaves it's members undefined.
Therefore the Box object created in main is not valid until

ifs >> b;

occurs. If anyone uses the Box object before that line, it will lead to
unexpected results.


Well, the default constructor can put it into a valid state then.
I don't see the point of the other constructor.
It's there so you can construct a box with whatever values you want. Is that not useful?
Why not write:

class Box
{
int left, right, up, down;
public:
Box() { }
friend std::istream &operator>>(std::istream &is, Box &box);
};

std::istream &operator>>(std::istream &is, Box &box)
{
return is >> box.left >> box.right >> box.up >> box.down;
}

This way you don't need the other constructor.
Having it means that you don't even have to make the function a friend, so there is not a single
mention of std::istream cluttering up the Box class. In any case, surely such a constructor is
virtually mandatory for this class, just for general-purpose use without streams.
You could also write:

class Box
{
int left, right, up, down;
public:
Box() { }

std::istream &extract(std::istream &is)
{
return is >> left >> right >> up >> down;
}
};

std::istream &operator>>(std::istream &is, Box &box)
{ return box.extract(is); }
The real problem as I see it is to get around the default constructor. You
can make the default constructor private but that still allows invalid
objects to exist.
By 'invalid' do you mean uninitialized, or not initialized with the right values (if the default
constructor were to initialize the members to default values)? And why is an "invalid" object a
problem? You are going to make it "valid" in the very next statement after you create it. For
example, is there anything disastrous about either of these?

int value;
is >> value;

Or:

int value = 0;
is >> value;

So what if the object you are reading into isn't the right value for a moment?
Here is what I was thinking:
class Box
{
int left, right, up, down;

Box(int left_, int right_, int up_, int down_) :
left(left_), right(right_), up(up_), down(down_)
{ }

public:
int get_area() const { return (right - left) * (up - down); }

// reads a new box
static Box *create(std::istream &is);

std::istream &extract(std::istream &is)
{
int left, right, up, down;
if (!(is >> left >> right >> up >> down))
return is; // this box is valid even when input fails
*this = Bar(left, right, up, down);
return is;
}

std::ostream &insert(std::ostream &os) const
{ return os << left << right << up << down; }
};

// reads a new box
Box *Box::create(std::istream &is)
{
int left, right, up, down;
if (!(is >> left >> right >> up >> down))
return 0;
return new Box(left, right, up, down);
}

// reads into an old box
std::istream &operator>>(std::istream &is, Box &box)
{ return box.extract(is); }
As I said in my first post (if I remember correctly back that far), why not ditch the extract
function in the class and make this function a friend so it can set the members directly? That
way you don't clutter your Box class with stream stuff.
std::ostream &operator<<(std::istream &os, const Box &box)
{ return box.insert(os); }

class BoxRef
{
SharedPtr<Box> ptr;

public:
int get_area() const { return ptr->get_area(); }

std::istream &extract(std::istream &is)
{
if (ptr) {
ptr.make_unique();
return is >> *ptr;
}

Box *new_ptr = Box::create(is);
if (!new_ptr)
return is;

ptr = new_ptr;
return is;
}

std::ostream &insert(std::ostream &os) const
{ return os << *ptr; }
};

std::istream &operator>>(std::istream &is, BoxRef &ref)
{ return ref.extract(is); }

std::ostream &operator<<(std::ostream &os, const BoxRef &ref)
{ return ref.insert(os); }

int main()
{
BoxRef mybox;
if (!(std::cin >> mybox))
return 1;
std::cout << mybox.get_area() << std::endl;
std::cout << mybox << std::endl;
return 0;
}
At no point in time does an invalid Box object exist. Instead we allow a
null reference to exist and then we read into it. What do you think?


I think it's extremely and unnecessarily complicated. Apart from the new Box option (which could
easily be added to Cy's version), what are the advantages of your version?

DW

Jul 22 '05 #10
[snip]

I don't see the point of the other constructor. Why not write:
class Box
{
int left, right, up, down;
public:
Box() { }
friend std::istream &operator>>(std::istream &is, Box &box);
};

std::istream &operator>>(std::istream &is, Box &box)
{
return is >> box.left >> box.right >> box.up >> box.down;
}

The meaning of Box is very tightly coupled to its implementation. There is
nothing wrong with that -- I could say the same thing about several standard
library classes such as std::complex. It's just a simple concrete data type.
Such a data type which lacks a constructor which directly initializes the
data members is really strange. Your design says that a Box isn't really a
Box unless it is initialized from a stream!

In general, it is a poor idea to break encapsulation by implementing any
convenience function, including operator >>, using a member function. If you
only use the interface to the object the software will be more maintainable.

--
Cy
http://home.rochester.rr.com/cyhome/
Jul 22 '05 #11
"Cy Edmunds" <ce******@spamless.rochester.rr.com> wrote in message
news:XH*****************@twister.nyroc.rr.com...
[snip]

I don't see the point of the other constructor. Why not write:
class Box
{
int left, right, up, down;
public:
Box() { }
friend std::istream &operator>>(std::istream &is, Box &box);
};

std::istream &operator>>(std::istream &is, Box &box)
{
return is >> box.left >> box.right >> box.up >> box.down;
}
The meaning of Box is very tightly coupled to its implementation. There is
nothing wrong with that -- I could say the same thing about several

standard library classes such as std::complex. It's just a simple concrete data type. Such a data type which lacks a constructor which directly initializes the
data members is really strange. Your design says that a Box isn't really a
Box unless it is initialized from a stream!

In general, it is a poor idea to break encapsulation by implementing any
convenience function, including operator >>, using a member function. If you only use the interface to the object the software will be more maintainable.


Let me write another Box class. It might help spell out the difficulty that
I have with object creation and streaming I/O. This time I have added a
class invariant. The invariant must always hold true. If it doesn't hold
true then the Box is invalid. There are a few strange ideas in this code so
bear with me.

#include <iostream>
#include <string>
#include <stdexcept>

template <class T>
class Phantom
{
T *t;
public:
Phantom() : t(0) { }
Phantom(T *t_) : t(t_) { }
~Phantom() { delete t; }

Phantom &operator=(const Phantom &rhs)
{
if (this != &rhs) {
delete t;
t = rhs.t;
}
return *this;
}

const T &copy() const
{
if (!t)
throw std::runtime_error("Cannot copy from an empty phantom
object");
return T(*t);
}
};

class Box
{
int left, right, up, down;
// invariant : left < right && down < up

Box(int l, int r, int u, int d) : left(l), right(r), up(u), down(d) { }

public:
int get_area() const { return (right - left) * (up - down); }

static std::istream &read(std::istream &is, int &l, int &r, int &u, int
&d);
static bool validate(int l, int r, int u, int d);

friend std::istream &operator>>(std::istream &is, Phantom<Box> &ptm);
friend std::istream &operator>>(std::istream &is, Box &box);
};

std::istream &Box::read(std::istream &is, int &l, int &r, int &u, int &d)
{
return is >> l >> r >> u >> d;
}

bool Box::validate(int l, int r, int u, int d)
{
return l < r && u < d;
}

std::istream &operator>>(std::istream &is, Phantom<Box> &ptm)
{
int l, r, u, d;
if (read(is, l, r, u, d) && validate(l, r, u, d))
ptm = new Box(l, r, u, d);
else // !is || !validate(l, r, u, d)
is.clear(ios::failbit);
return is;
}

std::istream &operator>>(std::istream &is, Box &box)
{
int l, r, u, d;
if (read(is, l, r, u, d) && validate(l, r, u, d))
box = Box(l, r, u, d);
else // !is || !validate(l, r, u, d)
is.clear(ios::failbit);
return is;
}

using namespace std;

// extracts two Box objects from std::cin
// area is calculated for each
int main()
{
Phantom<Box> ptm;
if (!(cin >> ptm))
return 1;
Box mybox = ptm.copy();
cout << mybox.get_area() << endl;

if (!(cin >> mybox))
return 1;
cout << mybox.get_area() << endl;
return 0;
}

There is a good reason why I did not make the Box constructor public. If
that constructor were made public, it would allow invalid Box objects to be
created outside. The constructor is private and directly initialises the
data members of Box.

Obviously it would be a mistake to add a default constructor that
initialises the data members to default values. This is why I have taken
pains to create the a generic Phantom class. What do you think of this?
Jul 22 '05 #12
"Jason Heyes" <ge******@optusnet.com.au> wrote in message
news:3f***********************@news.optusnet.com.a u...
class Box
{
int left, right, up, down;
// invariant : left < right && down < up

Box(int l, int r, int u, int d) : left(l), right(r), up(u), down(d) { }

public:
int get_area() const { return (right - left) * (up - down); }

static std::istream &read(std::istream &is, int &l, int &r, int &u, int
&d);
static bool validate(int l, int r, int u, int d);

friend std::istream &operator>>(std::istream &is, Phantom<Box> &ptm);
friend std::istream &operator>>(std::istream &is, Box &box);
};

std::istream &Box::read(std::istream &is, int &l, int &r, int &u, int &d)
{
return is >> l >> r >> u >> d;
}

bool Box::validate(int l, int r, int u, int d)
{
return l < r && u < d;
}

std::istream &operator>>(std::istream &is, Phantom<Box> &ptm)
{
int l, r, u, d;
if (read(is, l, r, u, d) && validate(l, r, u, d))
ptm = new Box(l, r, u, d);
else // !is || !validate(l, r, u, d)
is.clear(ios::failbit);
return is;
}

std::istream &operator>>(std::istream &is, Box &box)
{
int l, r, u, d;
if (read(is, l, r, u, d) && validate(l, r, u, d))
box = Box(l, r, u, d);
else // !is || !validate(l, r, u, d)
is.clear(ios::failbit);
return is;
}

using namespace std;

// extracts two Box objects from std::cin
// area is calculated for each
int main()
{
Phantom<Box> ptm;
if (!(cin >> ptm))
return 1;
Box mybox = ptm.copy();
cout << mybox.get_area() << endl;

if (!(cin >> mybox))
return 1;
cout << mybox.get_area() << endl;
return 0;
}

There is a good reason why I did not make the Box constructor public. If
that constructor were made public, it would allow invalid Box objects to be
created outside.
You can throw an exception if that happens. How can anyone use the Box class if you don't allow
one to be constructed?
The constructor is private and directly initialises the
data members of Box.

Obviously it would be a mistake to add a default constructor that
initialises the data members to default values.


Why? The default constructor can create a Box that's valid. And then the >> function can check
the validity of the left, right etc. values read from the stream and fail if they aren't right.

I think I must not be getting something here. How is your Box class different from any
equivalent Rectangle class that might represent a window or some other useful concept, and could
be used all over the place in some applications?

DW

Jul 22 '05 #13
"Jason Heyes" <ge******@optusnet.com.au> wrote in message
news:3f***********************@news.optusnet.com.a u...
"Cy Edmunds" <ce******@spamless.rochester.rr.com> wrote in message
news:XH*****************@twister.nyroc.rr.com...
[snip]

I don't see the point of the other constructor. Why not write:
class Box
{
int left, right, up, down;
public:
Box() { }
friend std::istream &operator>>(std::istream &is, Box &box);
};

std::istream &operator>>(std::istream &is, Box &box)
{
return is >> box.left >> box.right >> box.up >> box.down;
}
The meaning of Box is very tightly coupled to its implementation. There is nothing wrong with that -- I could say the same thing about several

standard
library classes such as std::complex. It's just a simple concrete data

type.
Such a data type which lacks a constructor which directly initializes the data members is really strange. Your design says that a Box isn't really a Box unless it is initialized from a stream!

In general, it is a poor idea to break encapsulation by implementing any
convenience function, including operator >>, using a member function. If

you
only use the interface to the object the software will be more

maintainable.


Let me write another Box class. It might help spell out the difficulty

that I have with object creation and streaming I/O. This time I have added a
class invariant. The invariant must always hold true. If it doesn't hold
true then the Box is invalid. There are a few strange ideas in this code so bear with me.

#include <iostream>
#include <string>
#include <stdexcept>

template <class T>
class Phantom
{
T *t;
public:
Phantom() : t(0) { }
Phantom(T *t_) : t(t_) { }
~Phantom() { delete t; }

Phantom &operator=(const Phantom &rhs)
{
if (this != &rhs) {
delete t;
t = rhs.t;
}
return *this;
}

const T &copy() const
{
if (!t)
throw std::runtime_error("Cannot copy from an empty phantom
object");
return T(*t);
}
};

class Box
{
int left, right, up, down;
// invariant : left < right && down < up

Box(int l, int r, int u, int d) : left(l), right(r), up(u), down(d) { }
public:
int get_area() const { return (right - left) * (up - down); }

static std::istream &read(std::istream &is, int &l, int &r, int &u, int &d);
static bool validate(int l, int r, int u, int d);

friend std::istream &operator>>(std::istream &is, Phantom<Box> &ptm);
friend std::istream &operator>>(std::istream &is, Box &box);
};

std::istream &Box::read(std::istream &is, int &l, int &r, int &u, int &d)
{
return is >> l >> r >> u >> d;
}

bool Box::validate(int l, int r, int u, int d)
{
return l < r && u < d;
}

std::istream &operator>>(std::istream &is, Phantom<Box> &ptm)
{
int l, r, u, d;
if (read(is, l, r, u, d) && validate(l, r, u, d))
ptm = new Box(l, r, u, d);
else // !is || !validate(l, r, u, d)
is.clear(ios::failbit);
return is;
}

std::istream &operator>>(std::istream &is, Box &box)
{
int l, r, u, d;
if (read(is, l, r, u, d) && validate(l, r, u, d))
box = Box(l, r, u, d);
else // !is || !validate(l, r, u, d)
is.clear(ios::failbit);
return is;
}

using namespace std;

// extracts two Box objects from std::cin
// area is calculated for each
int main()
{
Phantom<Box> ptm;
if (!(cin >> ptm))
return 1;
Box mybox = ptm.copy();
cout << mybox.get_area() << endl;

if (!(cin >> mybox))
return 1;
cout << mybox.get_area() << endl;
return 0;
}

There is a good reason why I did not make the Box constructor public. If
that constructor were made public, it would allow invalid Box objects to be created outside. The constructor is private and directly initialises the
data members of Box.

Obviously it would be a mistake to add a default constructor that
initialises the data members to default values. This is why I have taken
pains to create the a generic Phantom class. What do you think of this?


I think you have made a simple class virtually useless. For instance, take
this design and try to make an array of them:

Box disaster[3]; // error
std::vector<Box> wontworkeither; // error

Try to write a function which extends a Box's functionality:

// scale parameters by a constant
Box &operator *= (int factor)
{
// can't implement without using streams!
}

Evidently my argument that an unitialized Box is no worse than an
uninitialized int didn't convince you. But your idea that a default
initialized Box is some sort of weapon of mass destruction is far from the
mainstream of C++ design practice. And having a simple concrete data type
which cannot be initialized from arguments makes it very difficult to
extend.

You have obviously given the matter considerable thought and I think your
solution with the Phantom class is quite clever. However, I would say its
objective is unsound.

--
Cy
http://home.rochester.rr.com/cyhome/
Jul 22 '05 #14
"David White" <no@email.provided> wrote in message
news:Eg******************@nasal.pacific.net.au...
"Jason Heyes" <ge******@optusnet.com.au> wrote in message
news:3f***********************@news.optusnet.com.a u...

There is a good reason why I did not make the Box constructor public. If
that constructor were made public, it would allow invalid Box objects to be created outside.
You can throw an exception if that happens.


Exceptions are annoying. I like streams better.

How can anyone use the Box class if you don't allow one to be constructed?

The main function shows how to use the Box class. If you want the Box class
to do other things, then you had better extend it. For the purposes of this
discussion, however, that is not necessary.
The constructor is private and directly initialises the
data members of Box.

Obviously it would be a mistake to add a default constructor that
initialises the data members to default values.
Why? The default constructor can create a Box that's valid. And then the
function can check

the validity of the left, right etc. values read from the stream and fail

if they aren't right.
Let me ask you something. Should every class have a default constructor?
Should the Box class have a default constructor? You say the default
constructor can create a Box that is valid. But how do you decide on which
Box to create? What I am saying is that sometimes it doesn't make sense to
have a default constructor. Do you agree?

I think I must not be getting something here. How is your Box class different from any equivalent Rectangle class that might represent a window or some other useful concept, and could be used all over the place in some applications?

DW


I don't know what Rectangle class you are referring to. The Box class is
very simple. You can read and write Boxes using streams and get the area of
a Box. You cannot create a Box without reading it from a stream. Is that so
wrong? If you want you can modify the class to have this:

Box::Box(int l, int r, int u, int d) : left(l), right(r), up(u), down(d)
{
if (!validate(l, r, u, d))
throw std::runtime_error("Invalid arguments");
}

It still doesn't solve my initial problem. How will you read your first Box
object from a stream?

Jul 22 '05 #15
"Cy Edmunds" <ce******@spamless.rochester.rr.com> wrote in message
news:M5******************@twister.nyroc.rr.com...
I think you have made a simple class virtually useless. For instance, take
this design and try to make an array of them:

Box disaster[3]; // error

Arrays are evil.

std::vector<Box> wontworkeither; // error

No. That will work. Look at this function.

std::istream &read_boxes(std::istream &is, std::vector<Box> &boxes, int
count)
{
if (count == 0)
return is;

Phantom<Box> phm; // read first Box
if (!(is >> phm))
return is;
Box box = phm.copy();
boxes.push_back(box);

// read the rest
for (int i=1; i < count; i++) {
if (!(is >> box))
return is;
boxes.push_back(box);
}

return is;
}

The class is not useless.

Try to write a function which extends a Box's functionality:

// scale parameters by a constant
Box &operator *= (int factor)
{
// can't implement without using streams!
}

What do you mean? Here is an implementation:

Box &Box::operator*=(int factor)
{
left *= factor; right *= factor;
up *= factor; down *= factor;
}

What is the problem?

Evidently my argument that an unitialized Box is no worse than an
uninitialized int didn't convince you. But your idea that a default
initialized Box is some sort of weapon of mass destruction is far from the
mainstream of C++ design practice. And having a simple concrete data type
which cannot be initialized from arguments makes it very difficult to
extend.

All I am saying is that sometimes it doesn't make sense to have a default
constructor. The Box is just a simple example of this. There is nothing
wrong with an "uninitialised" (initialised but not explicitly initialised)
int. It is an int. That makes sense. A Box on the other hand is a more
complicated concept. A Box must be read from a stream. It cannot be created
by any other means.

You have obviously given the matter considerable thought and I think your
solution with the Phantom class is quite clever. However, I would say its
objective is unsound.

--
Cy
http://home.rochester.rr.com/cyhome/


Well thanks for the compliment. And I appreciate the time that you have
devoted to this issue.
Jul 22 '05 #16
"Jason Heyes" <ge******@optusnet.com.au> wrote in message
news:3f***********************@news.optusnet.com.a u...
"Cy Edmunds" <ce******@spamless.rochester.rr.com> wrote in message
news:M5******************@twister.nyroc.rr.com...
I think you have made a simple class virtually useless. For instance, take this design and try to make an array of them:

Box disaster[3]; // error

Arrays are evil.

std::vector<Box> wontworkeither; // error


No. That will work. Look at this function.

std::istream &read_boxes(std::istream &is, std::vector<Box> &boxes, int
count)


[snip]

This requires a reference to a std::vector which you can't declare because
Box is not default constructable.

Try to write a function which extends a Box's functionality:

// scale parameters by a constant
Box &operator *= (int factor)
{
// can't implement without using streams!
}

What do you mean? Here is an implementation:

Box &Box::operator*=(int factor)
{
left *= factor; right *= factor;
up *= factor; down *= factor;
}

What is the problem?


Oops, I goofed! I meant to write

// scale parameters by a constant
Box &operator *= (Box &b, int factor)
{
// can't implement without using streams!
}

In other words, NOT a member function. Since that is the distinction I
wished to make, that was a serious error!

[snip]
A Box must be read from a stream. It cannot be created
by any other means.


That's why I don't like it.

--
Cy
http://home.rochester.rr.com/cyhome/
Jul 22 '05 #17
"Jason Heyes" <ge******@optusnet.com.au> wrote in message
news:3f***********************@news.optusnet.com.a u...
"David White" <no@email.provided> wrote in message
news:Eg******************@nasal.pacific.net.au...

You can throw an exception if that happens.

Exceptions are annoying. I like streams better.


They aren't interchangeable.

How can anyone use the Box class if you don't allow one to be constructed?


The main function shows how to use the Box class. If you want the Box

class to do other things, then you had better extend it. For the purposes of this discussion, however, that is not necessary.
The constructor is private and directly initialises the
data members of Box.

Obviously it would be a mistake to add a default constructor that
initialises the data members to default values.
Why? The default constructor can create a Box that's valid. And then the
function can check

the validity of the left, right etc. values read from the stream and fail if they aren't right.

Let me ask you something. Should every class have a default constructor?


No.
Should the Box class have a default constructor?
I wouldn't find it useful without one.
You say the default
constructor can create a Box that is valid. But how do you decide on which
Box to create?
Whatever you like. A "unit Box" - 0,1,1,0 - is the obvious default, just as
zero is the obvious default for type int (and is what you get is you write
int()).
What I am saying is that sometimes it doesn't make sense to
have a default constructor. Do you agree?
Yes, but not in this case. If you have a default constructor the stream code
is quite simple. Without one it's unnecessarily complicated.

Not having a default constructor can be a real pain sometimes. If you have a
Box as a member of another class and there is no default constructor, the
class is forced to initialize it somehow in its own constructor, even if it
won't know what values it's supposed to have until later. In general, if
there's a reasonable default, I'd have a default constructor. It just makes
life easier.

I think I must not be getting something here. How is your Box class

different from any
equivalent Rectangle class that might represent a window or some other

useful concept, and could
be used all over the place in some applications?

DW


I don't know what Rectangle class you are referring to.


For example, for a graphics library of mine I wrote two rectangle classes.
One is LogRect, or "logical rectangle" which represents the logical, or
integer, units on the graphics device on which drawing takes place. The
other is VirRect, or "virtual rectangle", which represents a floating-point
scale of the user's choice. All drawable objects are defined in virtual
units, which are later converted to logical units for drawing. Within the
library source code, the type 'LogRect' appears 623 times, and the type
'VirRect' appears 902 times. These objects are used everywhere. Using them
would have been extraordinarily difficult if they didn't have default
constructors. To give just one example, the base class of all drawable
objects has two VirRects and one LogRect. It is not known what values some
or all of these rectangles will have until after the drawable object is
created.
The Box class is very simple.
It's the simple classes that tend to be used the most, and for which a
default constructor is most useful.
You can read and write Boxes using streams and get the area of
a Box. You cannot create a Box without reading it from a stream. Is that so wrong?
If that's what suits your purpose, no, but it's not something I can imagine
ever wanting.
If you want you can modify the class to have this:

Box::Box(int l, int r, int u, int d) : left(l), right(r), up(u), down(d)
{
if (!validate(l, r, u, d))
throw std::runtime_error("Invalid arguments");
}

It still doesn't solve my initial problem. How will you read your first Box object from a stream?


Box b;
if(is >> b)
{
// whatever
}

DW

Jul 22 '05 #18
"David White" <no@email.provided> wrote in message
news:vR******************@nasal.pacific.net.au...
"Jason Heyes" <ge******@optusnet.com.au> wrote in message
news:3f***********************@news.optusnet.com.a u...
Exceptions are annoying. I like streams better.
They aren't interchangeable.


I know.

Let me ask you something. Should every class have a default constructor?


No.
Should the Box class have a default constructor?


I wouldn't find it useful without one.


What do you mean "useful"?
You say the default
constructor can create a Box that is valid. But how do you decide on which Box to create?
Whatever you like. A "unit Box" - 0,1,1,0 - is the obvious default, just

as zero is the obvious default for type int (and is what you get is you write
int()).

What about the box centered at the origin -1,1,1,-1? Isn't that an obvious
default to use?
What I am saying is that sometimes it doesn't make sense to
have a default constructor. Do you agree?
Yes, but not in this case. If you have a default constructor the stream

code is quite simple. Without one it's unnecessarily complicated.

The stream code is almost the same. The main difference is that you need

std::istream &operator>>(std::istream &, Box *&);

to read the first Box.

Not having a default constructor can be a real pain sometimes. If you have a Box as a member of another class and there is no default constructor, the
class is forced to initialize it somehow in its own constructor, even if it won't know what values it's supposed to have until later. In general, if
there's a reasonable default, I'd have a default constructor. It just makes life easier.

And if there isn't a reasonable default, you start to think that there is
something wrong with your class. What's worse is when you have a default
that doesn't make any sense, and your are using it throughout your program.

I don't know what Rectangle class you are referring to.
For example, for a graphics library of mine I wrote two rectangle classes.
One is LogRect, or "logical rectangle" which represents the logical, or
integer, units on the graphics device on which drawing takes place. The
other is VirRect, or "virtual rectangle", which represents a

floating-point scale of the user's choice. All drawable objects are defined in virtual
units, which are later converted to logical units for drawing. Within the
library source code, the type 'LogRect' appears 623 times, and the type
'VirRect' appears 902 times. These objects are used everywhere. Using them
would have been extraordinarily difficult if they didn't have default
constructors. To give just one example, the base class of all drawable
objects has two VirRects and one LogRect. It is not known what values some
or all of these rectangles will have until after the drawable object is
created.

If you declare objects as you use them, you won't have a problem. For
instance, rather than write

Box box;
// code fragment
box = whatever;

you can write

// code fragment
Box box = whatever;

This way you don't abuse the default constructor.
The Box class is very simple.
It's the simple classes that tend to be used the most, and for which a
default constructor is most useful.


Even for simple classes such as Box, however, a default constructor is a bad
idea.
You can read and write Boxes using streams and get the area of
a Box. You cannot create a Box without reading it from a stream. Is that so
wrong?


If that's what suits your purpose, no, but it's not something I can

imagine ever wanting.

It doesn't have to be Boxes that you read and write. It could be an image
file like a TGA, GIF, BMP, etc.
If you want you can modify the class to have this:

Box::Box(int l, int r, int u, int d) : left(l), right(r), up(u), down(d)
{
if (!validate(l, r, u, d))
throw std::runtime_error("Invalid arguments");
}

It still doesn't solve my initial problem. How will you read your first

Box
object from a stream?


Box b;
if(is >> b)
{
// whatever
}

DW


You create a default Box and then write straight over it. The default Box
was never used. Therefore it should never have been created. Here is a
correct version that does not use the default constructor:

int l, r, u, d;
if (is >> l >> r >> u >> d)
{
Box b(l, r, u, d);
// whatever
}
Jul 22 '05 #19
"Cy Edmunds" <ce******@spamless.rochester.rr.com> wrote in message
news:L%******************@twister.nyroc.rr.com...
"Jason Heyes" <ge******@optusnet.com.au> wrote in message
news:3f***********************@news.optusnet.com.a u...
std::istream &read_boxes(std::istream &is, std::vector<Box> &boxes, int
count)
[snip]

This requires a reference to a std::vector which you can't declare because
Box is not default constructable.


You can declare an empty std::vector, regardless of whether Box is default
constructable or not.

Oops, I goofed! I meant to write

// scale parameters by a constant
Box &operator *= (Box &b, int factor)
{
// can't implement without using streams!
}

In other words, NOT a member function. Since that is the distinction I
wished to make, that was a serious error!

Make it a friend of Box and everything works fine.
A Box must be read from a stream. It cannot be created
by any other means.


That's why I don't like it.


What difference does it make? The input can come from constructor arguments
or it can come from a stream. What is the difference?
Jul 22 '05 #20
"Jason Heyes" <ge******@optusnet.com.au> wrote in message
news:3f***********************@news.optusnet.com.a u...
"David White" <no@email.provided> wrote in message
news:vR******************@nasal.pacific.net.au...
Whatever you like. A "unit Box" - 0,1,1,0 - is the obvious default, just as
zero is the obvious default for type int (and is what you get is you write
int()).


What about the box centered at the origin -1,1,1,-1? Isn't that an obvious
default to use?


If you like. The lengths are 2 rather than 1, which doesn't seem an obvious
default to me. But it really doesn't matter.

Not having a default constructor can be a real pain sometimes. If you have a
Box as a member of another class and there is no default constructor,
the class is forced to initialize it somehow in its own constructor, even if

it
won't know what values it's supposed to have until later. In general, if
there's a reasonable default, I'd have a default constructor. It just

makes
life easier.


And if there isn't a reasonable default, you start to think that there is
something wrong with your class. What's worse is when you have a default
that doesn't make any sense, and your are using it throughout your

program.

I explained the usefulness of a default constructor as well as I could last
time. The values chosen are not as important as the convenience of being
able to create a Box, or whatever, first, and fill in the right values
later.

I don't know what Rectangle class you are referring to.


For example, for a graphics library of mine I wrote two rectangle classes. One is LogRect, or "logical rectangle" which represents the logical, or
integer, units on the graphics device on which drawing takes place. The
other is VirRect, or "virtual rectangle", which represents a

floating-point
scale of the user's choice. All drawable objects are defined in virtual
units, which are later converted to logical units for drawing. Within the library source code, the type 'LogRect' appears 623 times, and the type
'VirRect' appears 902 times. These objects are used everywhere. Using them would have been extraordinarily difficult if they didn't have default
constructors. To give just one example, the base class of all drawable
objects has two VirRects and one LogRect. It is not known what values some or all of these rectangles will have until after the drawable object is
created.


If you declare objects as you use them, you won't have a problem. For
instance, rather than write

Box box;
// code fragment
box = whatever;


Not always possible. In the case of the LogRect and VirRect members
described above, the correct values sometimes have to be computed using map
objects (for mapping one scale to another). The drawable object's
initializor list is too early to initialize all its members to their final
values.
you can write

// code fragment
Box box = whatever;

This way you don't abuse the default constructor.
Good luck to you if you can write an application of any complexity without
ever needing to construct a default object and fill in the correct values
later.
The Box class is very simple.


It's the simple classes that tend to be used the most, and for which a
default constructor is most useful.


Even for simple classes such as Box, however, a default constructor is a

bad idea.
Fine.

[snip]
Box b;
if(is >> b)
{
// whatever
}

DW


You create a default Box and then write straight over it. The default Box
was never used.


It's only a "default" Box because you insisted that it always be a valid
Box. The default constructor could do nothing at all if you think it's
wasteful to "write straight over" the default valid Box.
Therefore it should never have been created. Here is a
correct version that does not use the default constructor:
It's an alternative version anyway.
int l, r, u, d;
if (is >> l >> r >> u >> d)
{
Box b(l, r, u, d);
// whatever
}


I'd rather create one object and read it in than create four objects, read
them all in, and then pass them to the constructor of a fifth object.

DW

Jul 22 '05 #21
Sorry if I sounded strict in my last reply. I was just trying to make my
point clear. Its no big deal really. Default constructors or no default
constructors. What does it matter? ;)
Jul 22 '05 #22

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

Similar topics

7
by: andrea | last post by:
I was thinking to code the huffman algorithm and trying to compress something with it, but I've got a problem. How can I represent for example a char with only 3 bits?? I had a look to the...
7
by: nog | last post by:
What's the best approach to creating many objects of a class? I have in mind using something analogous to a table to hold the data - which is in a form similar to (char name, char address, date...
3
by: gouki | last post by:
suppose i have a class: class X { int i; string out; } X::out = "object x";
37
by: Jason Heyes | last post by:
A pythagorean triple is a triple <a,b,c> whose components are positive integers satisfying a*a + b*b = c*c. An example is <3,4,5> since 3*3 + 4*4 = 9 + 16 = 25 = 5*5. I want to write a function...
4
by: tshad | last post by:
I am trying to set up an Image authorization where you type in the value that is in a picture to log on to our site. I found a program that is supposed to do it, but it doesn't seem to work. ...
3
by: tshad | last post by:
oThumbnail.Save is giving me an error: System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI+. theFileName = New FileInfo(strFileName) fileOut =...
15
by: waltbrad | last post by:
Hello. I'm studying the book "C++ Primer Plus" by Stephan Prata. In chapter 6 he gives an exercise that reads from a file. The list is thus: 4 Sam Stone 2000 Freida Flass 100500 Tammy...
2
by: =?Utf-8?B?UGF1bA==?= | last post by:
I am using ASP.Net 2.0 and VB.Net (although C#is ok also). I want to create an object/method/function that will take a URL as an input parameter and then return all of the HTML in that page. I...
63
by: Bill Cunningham | last post by:
I don't think I can do this without some help or hints. Here is the code I have. #include <stdio.h> #include <stdlib.h> double input(double input) { int count=0,div=0; double...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
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
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.