up vote 9 down vote favorite
5
share [g+] share [fb]

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.

link|improve this question

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
1  
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
1  
i legitimately want to know what can be more easily done in java. i wasn't asking this as a "JAVA SUCKS!" question - i'm certain there are things. i can even name a few. i wanted to see what others thought. – Claudiu Dec 8 '08 at 21:39
show 3 more comments
feedback

7 Answers

up vote 49 down vote accepted

Finding a job.

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

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|improve this answer
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
1  
I'm pretty sure he meant Java Applets, not server side applications. – Andrew Gwozdziewycz Dec 8 '08 at 21:45
1  
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
feedback

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

link|improve this answer
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
2  
Nice GUIs ... Java? – troelskn Feb 21 '09 at 10:16
The DrScheme/DrRacket IDEs are written in Scheme, and they run on Mac, Windows, and Linux. – Barry Brown Nov 20 '10 at 19:16
feedback

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|improve this answer
feedback

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

link|improve this answer
But there are of course solutions to this (just harder in Scheme than in Java), that is running Scheme in Java – Joel Borggrén-Franck Dec 16 '08 at 13:26
feedback

Hiring a junior developer who already knows the language.

link|improve this answer
feedback

Hard to say with certainty, because there are many schemes with lots of libraries, and with syntactical abstraction you can create a library that makes just about anything easy in Scheme.

Still how about this:

Auto-generating documentation that is clear about the number of arguments to functions and their expected types.

Or.. autocompletion.

The only things that'll be easier in Java are things related to major industrial adoption (but 1/2 of that benefit goes to JVM, not Java, and the other half is about libraries and documentation, which Schemes like Racket do quite well), or things related to it being a statically typed language. No doubt things like typed Scheme and various contracts systems along with very clever editors can most of the way, but they aren't standard and (as far as I know) can't do as much as some of the heavyweight Java editors.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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