Re: abusing exceptions
In article <WcSdnTPJB5UOW8LanZ2dnUVZ8sCknZ2d@bt.com>,
francis.glassborow@btinternet.com says...
[ ... ]
There is obviously something that I am not getting here.
What you're not getting is how his code works.
[ ... ]
Why does this have a stack problem
int result;
void recur(int depth){
if (depth == 0) return ;
else{
result *= depth;
recur(depth - 1);
return;
}
}
[ ... ]
that this one does not
int result;
void recur(int depth){
if (depth == 0) throw "stop" ;
else{
result *= depth;
recur(depth - 1);
}
}
Both of these have the same problem. The OP's code is NOT like either
one of these though. His code works roughly like this:
void recur(int depth) {
if (depth == 0)
return;
throw(depth-1);
}
void recur_entry(int depth) {
while (depth > 0) {
try {
recur(depth);
}
catch(int x) {
depth = x;
}
}
}
(He put the current depth into a struct and throws an instance of the
struct, but the call structure isn't affected).
His code has a maximum call depth of 1, regardless of the number of
iterations specified. The stack gets unwound at EVERY iteration, so it
never grows. This is why the speed of exception handling is a great
concern with this implememtation: it doesn't just throw one exception at
the end of the recursion -- rather, it throws one exception for every
iteration specified.
Both versions of your code have a maximum call depth of (roughly)
INT_MAX, and the actual depth varies directly with the value of 'depth'
orginally passed.
--
Later,
Jerry.
The universe is a figment of its own imagination.
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]