Tagged Questions
Languages that compile their source code to the byte code of the java virtual machine are commonly called JVM languages. A common feature of those languages is that the Java APIs can be used more or less seamlessly.
31
votes
8answers
3k views
Create a JVM programming language
I have created a compiler in C (using lex & bison) for a dynamic typed programming language that supports loops, functions declarations inside functions, recursive calls etc. I also created a ...
26
votes
2answers
1k views
How to integrate Scala into core Android platform?
I am interested in integrating Scala (or some other non-Java JVM-language) into the android platform. I am not referring to writing an android application with Scala, that I did early early on, but ...
21
votes
2answers
1k views
Haskell on JVM?
I'm wondering if there is some way to make Haskell run on the JVM (compiled or interpreted)?
There exists JHaskell on Sourceforge but this one seems to be empty and dead.
GHC uses LLVM as compiler ...
21
votes
7answers
3k views
Should I study Scala?
I am an experienced C++ programmer with average Python skills. The reasons I studied Python in the first place were:
to get a different perspective on programming (static vs dynamic, interpreted vs ...
18
votes
7answers
3k views
Is anyone using Scala in anger (and what advice for a Java programmer)?
I've been a Java programmer for over 10 years since starting off with Smalltalk. It's my opinion that next big languages are likely to be ones which run on the ubiquitous Java Virtual Machine. I'd ...
17
votes
3answers
972 views
What compromises Scala made to run on JVM?
Scala is a wonderful language, but I wonder how could be improved if it had it's own runtime?
I.e. what design choices were made because of JVM choice?
17
votes
6answers
5k views
Groovy advantages over Jython or Jruby?
Why would I choose to use Groovy when I could use Jython or Jruby? Does the language provide any inherent advantages to make up for the fact that Jython and Jruby skills are applicable to their parent ...
14
votes
4answers
431 views
Which JVM functional languages are well IDE-supported? (IDE: IDEA, Netbeans, Eclipse or similar)
I have spent much time looking for a functional language that can seamlessly access Java legacy code (Weka code). Autocompletion of imported Java class methods would be excellent.
I will present my ...
14
votes
4answers
589 views
Explanation of “Lose your head” in lazy sequences
In Clojure programming language, why this code passes with flying colors?
(let [r (range 1e9)] [(first r) (last r)])
While this one fails:
(let [r (range 1e9)] [(last r) (first r)])
I know it is ...
13
votes
4answers
579 views
Efficacy of sticking to just the functional paradigm in Scala
I recently bought Programming Scala, and have been reading through it. The language definitely isn't what I expected! Specifically, it seems to implement just about every programming language idea I'm ...
11
votes
2answers
308 views
Sending a POSIX signal from the JVM
How do I send a POSIX signal from within the JVM? (in Java or Clojure)
I never thought this would be an issue until I tried googling it — there is lots of information about handling signals, but ...
11
votes
3answers
1k views
OCaml for JVM. Is there any?
I took a look at some new languages for JVM. Two of them are gathering much interest these days: Clojure and Scala. But in my humble opinion, both of them are not ideal. (Let's keep it a speculation, ...
10
votes
11answers
1k views
Stuck with JVM, Sick of Java… Where to go?
For the next 3 years I will have to work with the JVM (project requirement) using a very specific third party API. They want Java but I've been given leeway to move away from Java. I was hoping we ...
9
votes
8answers
3k views
Difference between JVM implementations
Where do JVM Implementations differ (except licensing)?
Does every JVM implement Type Erasure for the Generic handling?
Where are the differences between:
JRockit
IBM JVM
SUN JVM
Open JDK
Blackdown ...
9
votes
4answers
6k views
Ruby/Rails thread safety
I have been hacking with Ruby from time to time, but I haven't done anything big or multithreaded with it. I have heard that MRI only supports green threads and JRuby supports native threads via JVM. ...
8
votes
2answers
135 views
Java , Python : VirtualEnv for Java
Is there anything similar to python virtualenv for Java or JVM Languages ?
8
votes
6answers
1k views
Can Scala survive without corporate backing?
I was wondering whether Scala will get the takeup it deserves without explicit corporate backing (I was thinking by Sun/Oracle but I suppose it could be someone else, such as Google).
With Sun's ...
7
votes
2answers
300 views
Learning Clojure coming from Lisp
I'm thinking seriously of making Clojure my new hacking language since I love Lisp but have some problems with CL and Scheme. I've never worked in the Java environment before and my lisp experience is ...
7
votes
8answers
437 views
What is your preferred scripting language in java world (scripting language on JVM) and way?
What is your preferred scripting language in java world (scripting language on JVM) and way? When do you prefer your scripting language over java (in what situations for example for prototyping)? Do ...
6
votes
2answers
201 views
Using partial functions in Scala - how does it work?
I'm new to Scala, I'm using 2.9.1, and I'm trying to get my head around how to use partial functions. I have a basic understanding of curried functions, and I know that partial functions are kind of ...
6
votes
5answers
325 views
Use of recursion in Scala when run in the JVM
From searching elsewhere on this site and the web, tail call optimization is not supported by the JVM. Does that therefore mean that tail recursive Scala code such as the following, which may run on ...
6
votes
1answer
476 views
Canonical reference on JVM internals for programmer/developers
The title captures my question fairly well. I'm wondering if there is a good resource or leaping-off point for questions about how a JVM (not just HotSpot, but that's obviously the place to start) ...
6
votes
5answers
709 views
Book for learning how to write Clojure/Lisp Macros
I'm reading "Programming Clojure" and I'm interested in a book that discusses how to create macros as extensive as possible.
Do you suggest a book for this?
Thanks.
5
votes
3answers
82 views
Groovy is performing differently than Java In this code
I had a look at this question here. The problem with this question is this line:
Integer i3 = (Integer) -128; /*** Doesn't compile ***/
As some of the answer's say's:
The compiler interprets the ...
5
votes
4answers
153 views
What does it really mean when you say “This language runs on JVM”?
I have been hearing a lot lately regarding Scala, Clojure, etc which is supposed to run on JVM.
Does this means that those languages are implementing the Java API underneath?
What does it mean for a ...
5
votes
2answers
248 views
What is the difference between def foo = {} and def foo() = {} in Scala?
Given the following constructs for defining a function in Scala, can you explain what the difference is, and what the implications will be?
def foo = {}
vs.
def foo() = {}
Update
Thanks for the ...
5
votes
1answer
481 views
Use cases for Clojure in projects
Of course I'm not talking about using Clojure just because I can.
I'm curious about where/when to use Clojure and what is the value it brings to a project.
Suppose I'm doing Java web development, ...
5
votes
10answers
368 views
Why should a Java developer learn an additional JVM language?
I am a java developer and I want to know,
what is the main benefit from learning a language such as Scala or Groovy?
5
votes
5answers
325 views
Generating .class file for JVM
I am working on a project that requires me to generate a java ".class" file on the go that can be later on compiled on the JVM. After learning and working with MSIL (Microsoft IL) which is also a ...
5
votes
4answers
659 views
RoR on GAE?
Since Google App Engine will soon full support Java:
Would it be possible to run Ruby on Rails on Google App Engine? Or the limitations imposed by the AppEngine runtime will affect the JRuby ...
5
votes
4answers
1k views
J2ME development without Java?
I'm making my first foray into the J2ME world. I'd prefer to use a functional language to do the development.
Scala used to have CLDC support, but it's no longer maintained. Bigloo seems to have ...
4
votes
2answers
82 views
How do make the JVM recognize a scala.Array[T] as a java array T[] in a polymorphic method call?
The problem can be found in the following code:
def debug[T](format: String, arg1:T, arg2:Any, args:Any*):T = {
logger.debug(format, (arg1 :: arg2 :: args.toList).toArray)
arg1
...
4
votes
2answers
242 views
Scala generics - why I can't create parametrised object inside generic class?
I'm currently learning scala.
Why this code doesn't work:
class GenClass[T](var d : T) {
var elems: List[T] = Nil
def dosom(x: T) = {
var y = new T()
y
}
}
I get:
error: class ...
4
votes
3answers
1k views
Which could become a strong alternative JVM language: Scala, Clojure, Fan, JavaFX Script, or other?
I am currently deciding on an alternative JVM language to port an existing Swing desktop application written in Java 6. Given that JavaFX specifically targets this kind of application, it would seem ...
4
votes
3answers
393 views
Recursive overloading semantics in the Scala REPL - JVM languages
Using Scala's command line REPL:
def foo(x: Int): Unit = {}
def foo(x: String): Unit = {println(foo(2))}
gives
error: type mismatch;
found: Int(2)
required: String
It seems that you can't define ...
3
votes
1answer
128 views
XML parsing with Scala: Equivalent to “getElementByTagName(name)” in JS
XML parsing in Scala doesn't seem to be as easy and straightforward as it should be.
What I needed was something that behaved similar to document.getElementsByTagName(name) in JavaScript, but for my ...
3
votes
2answers
66 views
Groovy implementation details
Where can I find more details about how Groovy is implemented under-the-hood? Aside from the source code, are there good papers, blogs, videos, slide decks etc discussing the implementation details?
3
votes
4answers
369 views
Adding default package imports
In Java, Scala, or generally any JVM language, there is a set of packages that is imported by default. Java, for instance, automatically imports java.lang, you don't need to do it in your Java code ...
3
votes
1answer
205 views
Will the JVM be extended to handle generics?
What do you think? Will the JVM ever get support for generics?
Quite likely that would not only require substantial changes to the JVM, but also to the class file format,
but languages running on the ...
2
votes
1answer
81 views
what does const TAB = ^I in pascal?
I'm following the tutorial here. Under the heading The Cradle, you can see the code:
const TAB = ^I;
well this is a pascal code, actually I'm trying to re-implement those pascal code to Java or ...
2
votes
1answer
62 views
When does running Jython on a .py file generate a .class file?
I just started playing with Jython, and sometimes running jython on a .py file generates a .class file, but this doesn't always happen.
At first I thought the trigger was that you had to define a ...
2
votes
2answers
59 views
Which JVM-based language should I use for mapping of one type to another?
Currently I working with Java to write a program that does an EAI between two applications. One application comes with HL7 which I parse with HAPI. So I get an Java object structure. I wan't to ...
2
votes
3answers
220 views
Decompiling JVM languages
Is it possible to decompile JVM languages like Groovy, Scala to their initial form?
If I try and decompile a 4 line Groovy class I get about 20 lines of decompiled Java code.
It's more of a ...
2
votes
2answers
356 views
Setting CLASSPATH for Clojure project
I have a plain project structure:
Base Dir
src ;; Pile of Clojure files
lib ;; Jar files
To export the classpath:
$ export CLASSPATH=$CLASSPATH:src:lib/*
Trying to run a Clojure file:
java ...
2
votes
2answers
894 views
Akka as the concurrency model for Clojure
Looks there is a lot of cool things about Akka framework (I don't really understand the framework, hope to dig into it soon).
Is it encouraged to use Akka in Clojure? does it make sense to use Akka as ...
2
votes
2answers
523 views
Generating a 'Hello, World!' class with the Java ASM library
I have started messing around with the ASM API for a compiler project I am working on. However, I am finding that the documentation is less than clear for a newcomer in many places and I thought ...
2
votes
2answers
130 views
How does types erasure help Clojure exist?
How does JVM type erasure help Clojure? Can Clojure exist without it? What would happen if the JVM had reified types? That is, how would Clojure change?
2
votes
2answers
107 views
Investment figures for the Java platform
Are there any market research figures available calculating aggregate investment (worldwide, by region, by country) in the Java platform? This could include software (application servers, IDEs, ...
2
votes
3answers
231 views
who is the owner of JVM?
Lot of Mobile devices are coming with JVM with its OS(for example Nokia,sony ericcson).will all devices have same JVM?
are all JVMs owned by sun micro systems? has device manufacturer paid for it to ...
2
votes
2answers
419 views
Why not Rhino for JVM apps?
I would like to develop some apps for the JVM using a concise, dynamic language. The most popular choices for this seem to be Jython, JRuby, Groovy, and maybe Clojure.
Rhino appears to be fast and ...