Computer Science Canada Java and Scala, a demonstration in code. |
Author: | wtd [ Tue Jan 09, 2007 12:52 am ] | ||
Post subject: | Java and Scala, a demonstration in code. | ||
A little demonstration of Scala, and what it can do, with regards to recursion. ![]() Also a bit of comparison between Test.java and ScalaTest.scala.
|
Author: | Clayton [ Tue Jan 09, 2007 1:01 am ] |
Post subject: | Re: Java and Scala, a demonstration in code. |
is Scala an extension of sorts to Java? Either way, i fail to see what you are trying to show us, please enlighten me about what you are trying to show. |
Author: | md [ Tue Jan 09, 2007 1:12 am ] |
Post subject: | RE:Java and Scala, a demonstration in code. |
Scala is another language that runs on the java virtual machine. It's considerably more powerful then Java. |
Author: | wtd [ Tue Jan 09, 2007 1:19 am ] |
Post subject: | RE:Java and Scala, a demonstration in code. |
In Java, there is no tail-call optimization, so trying to find the factorial of large numbers would result in a stack overflow. Scala can implement factorial recursively, and it has efficient runtime characteristics. |
Author: | md [ Tue Jan 09, 2007 1:21 am ] |
Post subject: | RE:Java and Scala, a demonstration in code. |
tail-call optimizations are cool, very very nifty if you do any assembly level stuff as well |
Author: | zylum [ Tue Jan 09, 2007 2:45 am ] | ||
Post subject: | RE:Java and Scala, a demonstration in code. | ||
my version of the recursive factorial function can calculate 5745! before a stack overflow occures.. I dont thing that is too bad ![]() ![]()
|
Author: | rizzix [ Thu Jan 11, 2007 7:27 pm ] |
Post subject: | RE:Java and Scala, a demonstration in code. |
yea scala == fun.. i particularly like the pattern matching.. most of my newer projects are in scala. ![]() Scala (java) frontend and a haskell backend.. Its a prefect combo! |