28
votes
2answers
2k views
Why is there no GIL in the Java Virtual Machine? Why does Python need one so bad?
I'm hoping someone can provide some insight as to what's fundamentally different about the Java Virtual Machine that allows it to implement threads nicely without the need for a Global Interpreter …
28
votes
15answers
2k views
Why would you ever implement finalize()?
I've been reading through a lot of the rookie Java questions on finalize() and find it kind of bewildering that no one has really made it plain that finalize() is an unreliable way to clean up …
27
votes
13answers
1k views
In the 13 years that Java has been around, are there any specific examples of backward incompatibilities?
It has been thirteen years between the initial public release of Java 1.0 (1996) and the current stable release 1.6.0_16 (2009).
During those thirteen years the following notable releases have been …
23
votes
9answers
8k views
What are the best JVM settings for Eclipse?
What are the best JVM settings you have found for running eclipse.
Thanks!
21
votes
21answers
2k views
Is Scala the next big thing?
I've been learning Scala recently, and it seems like a very very promising general purpose programming language. It has all the good functional programming features, terse syntax, it runs on JVM and …
18
votes
4answers
604 views
What is the state of Open Source Java?
What is the current state of Java's transition to an open source license (which Wikipedia lists as the GNU General Public License / Java Community Process)?
Java being inclusive of many things, …
15
votes
7answers
1k views
Will there be a functional language which does for the Java community what F# does for the .NET community?
Will there be a functional language which does for the Java community what F# does for the .NET community?
What functional programming languages are available, or in development, for the JVM?
15
votes
8answers
876 views
Best Resources for Learning JavaFX?
For those of us learning JavaFX, what are the best resources you've found so far?
(One of the difficulties in finding good JavaFX resources is that things written before July 2008 are often no …
15
votes
7answers
8k views
How to deal with “java.lang.OutOfMemoryError: Java heap space” error (64MB heap size)
I am writing a client-side Swing application (graphical font designer) on Java 5. Recently, I am running into "java.lang.OutOfMemoryError: Java heap space" error because I am not being conservative on …
14
votes
4answers
504 views
Are there compelling reasons not to use Groovy?
I'm developing a LoB application in Java after a long absence from the platform (having spent the last 8 years or so entrenched in Fortran, C, a smidgin of C++ and latterly .Net).
Java, the language, …
12
votes
3answers
281 views
Is it possible for Scala to have reified generics without changing the JVM?
I've recently started learning Scala and was disappointed (but not surprised) that their generics are also implemented via type erasure.
My question is, is it possible for Scala to have reified …
12
votes
6answers
1k 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 …
12
votes
3answers
322 views
Are invisible references still a problem in recent JVMs?
I was reading http://java.sun.com/docs/books/performance/1st_edition/html/JPAppGC.fm.html and section A.3.3 worried me.
I had been working on the assumption that a variable that dropped out of scope …
11
votes
5answers
251 views
Why does the Sun JVM continue to consume ever more RSS memory even when the heap, etc sizes are stable?
Over the past year I've made huge improvements in my application's Java heap usage--a solid 66% reduction. In pursuit of that, I've been monitoring various metrics, such as Java heap size, cpu, Java …
11
votes
4answers
342 views
How does the JVM ensure that System.identityHashCode() will never change?
Typically the default implementation of Object.hashCode() is some function of the allocated address of the object in memory (though this is not mandated by the JLS). Given that the VM shunts objects …
