Re: dynamic_cast is ugly!
Daniel T. wrote:
On Mar 12, 11:26 am, Juha Nieminen <nos...@thanks.invalid> wrote:
Daniel T. wrote:
virtual void performAction(const std::string& action,
const std::string& parameters);
To borrow Nick Keighley's example (which Dave Mikes answered
admirably,) don't parse through a container of Shapes, looking for all
the squares and telling them to turn yellow (even if that is only
something a square can do.) Let all the shapes know that a "turn
yellow" request has been made for squares.
You have still not answered my question: How do you propose I do that?
It almost sounds like you are proposing a delegation paradigm, something
which C++ doesn't support directly.
There are any number of ways to do it, Dave Mikes mentioned one,
He didn't mention any concrete, implementable design, just some
abstract theoretical stuff, with not even a single line of code.
another would be to have a virtual function in Shape that lets Shapes
know that a "change rectangles to yellow" request has been made.
That's exactly what I asked how to do, and asked if it should be done
like at the beginning of the quote above, which I shall repeat:
virtual void performAction(const std::string& action,
const std::string& parameters);
The answer to this was "no, it shouldn't be done like that", but the
actual way of doing it was not given.
Please show me some concrete C++ code, not just some abstract
theoretical concepts.
Again, there are so many correct ways to do it
From which you have presented none. Not in actual C++ code anyways.
Note that [the coder might be dealing with a poorly designed interface...]
If that's the case, then dynamic_cast may be the only solution.
You keep insisting it's a "poorly designed interface" but refuse to
give a better solution.