vote up 1 vote down star

What are some of the criticisms leveled against exposing continuations as first class objects?

I feel that it is good to have first class continuations. It allow complete control over the execution flow of instructions. Advanced programmers can develop intuitive solutions to certain kind of problems. For instance, continuations are used to manage state on web servers. A language implementation can provide useful abstractions on top of continuations. For example, green threads.

Despite all these, are there strong arguments against first class continuations?

flag

80% accept rate
Can you elaborate? An example maybe? – khelll Sep 22 at 6:10
6  
I only just realised that you meant "cons" like the opposite of "pros", instead of (cons a b) from Lisp. – Greg Hewgill Sep 22 at 6:54
Did you mean closures, or did you really mean continuations? – troelskn Sep 22 at 7:23
@troelskn I meant continuations. – Vijay Mathew Sep 22 at 7:27
I used cons as in "pros and cons", not the "cons" in Lisp :) – Vijay Mathew Sep 22 at 7:28

4 Answers

vote up 3 vote down check

First up, there is more then just call/cc when it comes to continuation. I suggest starting with Mark Feelys paper: A better API for first class continuations

Next up I suggest reading about the control operators shift and reset, which is a different way of representing contunations.

link|flag
vote up 2 vote down
  1. Most programmers don't understand them. If you have code that uses them, it's harder to find replacement programmers who will be able to work with it.
  2. Continuations are hard to implement on some platforms. For example, JRuby doesn't support continuations.
link|flag
Whether programmers understand continuations or not depends on the goals of the language. Obviously this would be a bad thing for Cobol or Java. But for a language like Scheme or Haskell it isn't a factor. – Jonathan Arkell Sep 23 at 21:40
vote up -1 vote down

Call/cc is the 'goto' of advanced functional programming (a la the example here).

link|flag
Yes, but in a lot of ways, call/cc is kinda similar to the return statement. Every once in a while, people get upset by the use of return, but most people seem to be OK with it. It seems only fair to me that if you're going to complain about call/cc you should also be giving equal time to the return statement on principle. – Bob Aman Sep 22 at 6:53
lambda is the goto of functional programming (example: cs.brown.edu/~sk/Publications/…) – Eli Barzilay Sep 22 at 6:56
3  
That's a gross oversimplification. – Jonathan Arkell Sep 23 at 5:57
vote up 0 vote down

in ruby 1.8 the implementation was extremely slow. better in 1.9, and of course most schemes have had them built in and performing well from the outset.

link|flag
1  
Please note that the question is about a language feature, not the quality of its various implementations. – Vijay Mathew Sep 22 at 7:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.