vote up 4 vote down star
4

These two languages are very different. They're each well-suited to their own particular tasks. What tasks are easy to do in Java, yet are hard / require lots of ugly code to do in Scheme? Another way of putting it: what is Java better at?

If you can think of things that Scheme is better at, see this question.

EDIT: This pair of questions has gotten about 14 upvote/downvote pairs. It's interesting that this is so controversial. I want to make a disclaimer that I don't mean this as flamebait.

flag

67% accept rate
Is it really necessary to have two questions for this - let alone one? – matt b Dec 8 '08 at 19:41
This is actually a good question (much better than the other version) because it makes me wonder why so many people are using Java over Scheme. – Jonathan Tran Dec 8 '08 at 19:57
Closing finger is twitchy due to flamebait potential... – Paul Nathan Dec 8 '08 at 20:02
Questions like this are useful when trying to decide what language to use when tackling a certain problem. Each language has its own strengths/weaknesses. – Adam Jaskiewicz Dec 8 '08 at 20:12
Agreed. Even though "hard" may be subjective, I think people could come up with an objective answer to what's harder in one language over another, given that the difference is significant. – Jonathan Tran Dec 8 '08 at 21:05
show 3 more comments

6 Answers

vote up 35 vote down

Finding a job.

link|flag
Ha! Thanks for the laugh! +1 – sylvarking Dec 8 '08 at 20:09
reluctant upvote :-( – Kyle Cronin Dec 8 '08 at 20:24
Easy. Teach it! – soegaard Dec 10 '08 at 19:35
1  
Scheme on a resume is never a bad thing. – Jonathan Arkell Dec 15 '08 at 3:12
@Jonathan Arkell: Companies which would recognize this as not being a bad thing would be even better. – stesch Dec 16 '08 at 6:16
vote up 5 vote down

Making apps that run in a web browser.

Most people have the JRE already installed, so you can run Java code in someone's browser (the client-side), complete with JRE libraries. To run Scheme code, you have to use a Scheme interpreter written in JavaScript. JavaScript has fewer permissions because it is sanboxed more strictly. Any libraries must be included explicitly.

link|flag
not true - PLT Scheme comes with a web language which actually is very pleasant to work with. (you do need to run that web server, it's true) – Claudiu Dec 8 '08 at 21:40
I'm pretty sure he meant Java Applets, not server side applications. – Andrew Gwozdziewycz Dec 8 '08 at 21:45
SISC is a Scheme implementation that runs on the Java VM. See the SISC web-site for a demonstration. – soegaard Dec 8 '08 at 22:48
@andrew: good point, i missed that. – Claudiu Dec 9 '08 at 1:19
I stand corrected. Should I remove my answer then? I'm really wondering... there's got to be something Java is better at. Right??? What is it? – Jonathan Tran Dec 9 '08 at 19:30
vote up 3 vote down

Swing makes Java one of the easiest languages to create nice GUI's fast, so, general GUI-programming.

link|flag
Non sequitur - just because Java has something doesn't mean that Scheme doesn't. – Svante Dec 9 '08 at 17:36
Well that's sort of the whole point of the question. It's not asking what one language could theoretically have. If the GUI libraries for Scheme exist but are immature or somehow hard to use relative to the Java ones, then I'd say that counts. – Jonathan Tran Dec 10 '08 at 14:51
Nice GUIs ... Java? – troelskn Feb 21 at 10:16
vote up 2 vote down

Everything you do in Java is hard to read in Scheme. Everything you do in Scheme is simpler than in Java--once you understand it.

link|flag
vote up 1 vote down

Hiring a junior developer who already knows the language.

link|flag
vote up 1 vote down

Using the gazillion Java libraries out there (this can be a good or a bad thing)

link|flag
But there are of course solutions to this (just harder in Scheme than in Java), that is running Scheme in Java – JBF Dec 16 '08 at 13:26

Your Answer

Get an OpenID
or

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