Tagged Questions
A Java Virtual Machine (JVM) enables a set of computer software programs and data structures to use a virtual machine model for the execution of other computer programs and scripts.
242
votes
17answers
126k views
What are the best JVM settings for Eclipse?
What are the best JVM settings you have found for running Eclipse?
88
votes
3answers
7k 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 ...
76
votes
16answers
11k 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 ...
65
votes
5answers
29k views
Real differences between “java -server” and “java -client”?
Is there any real practical difference between "java -server" and "java -client"? All I can find on Sun's site is a vague "-server starts slower but should run faster". What are the real ...
56
votes
5answers
2k views
Is this a JVM bug or “expected behavior”?
I noticed some unexpected behavior (unexpected relative to my personal expectations), and I'm wondering if something if there is a bug in the JVM or if perhaps this is a fringe case where I don't ...
52
votes
13answers
128k 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 ...
47
votes
3answers
837 views
Strange exception table entry produced by Sun's javac
Given this program:
class Test {
public static void main(String[] args) {
try {
throw new NullPointerException();
} catch (NullPointerException npe) {
...
45
votes
5answers
2k views
Why doesn't the JVM cache JIT compiled code?
The canonical JVM implementation from Sun applies some pretty sophisticated optimization to bytecode to obtain near-native execution speeds after the code has been run a few times. The question is, ...
44
votes
26answers
9k views
Is Scala the next big thing? [closed]
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 ...
42
votes
4answers
40k views
How can I tell if I'm running in 64-bit JVM or 32-bit JVM?
How can I tell if the JVM my application runs in is 32 bit or 64-bit? Specifically, what function or preference do I access to detect this within the program?
42
votes
7answers
15k views
On Performance and Java Interoperability: Clojure vs. Scala
I have already read various accounts of Clojure vs. Scala and while I realize that both have their place. There are a few considerations that I haven't acquired a complete explanation on when it ...
41
votes
5answers
9k views
Does the JVM prevent tail call optimizations?
I saw this on a question:
Scala in particular doesn't support tail-call elimination except in self-recursive functions, which limits the kinds of composition you can do (this is a fundamental ...
38
votes
14answers
2k 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 ...
38
votes
11answers
5k views
How do I write a correct micro-benchmark in Java?
As the title says. How do you write (and run) a correct micro-benchmark in Java?
I'm looking here for code samples and comments illustrating various things to think about.
Example: Should the ...
37
votes
13answers
10k views
Alternatives to Java for Android development?
I've started developing Android apps a couple of months ago, and have a few under my belt. While I can tolerate Java enough to keep developing, I was wondering what success the community has had ...
35
votes
4answers
5k views
Implementing C# for the JVM
Is anyone attempting to implement C# for the JVM? As a Java developer, I've been eyeing C# with envy, but am unwilling to give up the portability and maturity of the JVM, not to mention the diverse ...
32
votes
8answers
3k views
Why Clojure over other JVM Lisps: Kawa, Armed Bear or SISC?
The JVM already had three Lisps before Clojure arrived on the scene: Kawa, Armed Bear and SISC.
What gap does Clojure fill that was left by those Lisps?
32
votes
18answers
5k views
Why doesn't Sun do a C# to Java byte code compiler?
We Want to Run Our C# Code on the JVM
My company has a large C# code base. Well over half of this code is our core engine for creating, reading, modifying, calculating and writing Excel workbooks. We ...
31
votes
4answers
3k views
JVM heap replication between two machines
What are the basic principles of how two separable computers connected within the same network running the same Java application maintain the same state by syncing their heap between each other?
I ...
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 ...
30
votes
7answers
36k views
Java 32-bit vs 64-bit compatibility
Will Java code built and compiled against a 32-bit JDK into 32-bit byte code work in a 64-bit JVM? Or does a 64-bit JVM require 64-bit byte code?
To give a little more detail, I have code that was ...
29
votes
4answers
607 views
Improving the JVM for Scala [closed]
What changes to the JVM would most benefit the Scala compiler and runtime?
The dynamic languages will benefit greatly in performance from the introduction of the InvokeDynamic byte code scheduled to ...
29
votes
17answers
13k views
How do you crash a JVM?
Newbie here... Also not sure whether the question belongs to a site that prefers questions that can be answered and not discussed. Still...
I was reading a book on programming skills wherein the ...
27
votes
2answers
9k views
What does JVM flag CMSClassUnloadingEnabled actually do?
I cannot for the life of me find a definition of what the Java VM flag CMSClassUnloadingEnabled actually does, other than some very fuzzy high-level definitions such as "gets rid of your PermGen ...
25
votes
3answers
319 views
Why reading a volatile and writing to a field member is not scalable in Java?
Observe the following program written in Java (complete runnable version follows, but the important part of the program is in the snippet a little bit further below):
import java.util.ArrayList;
...
25
votes
6answers
1k views
Haskell vs JVM performance [closed]
I want to write a backend system for a web site (it'll be a custom search-style service). It needs to be highly concurrent and fast. Given my wish for concurrency, I was planning on using a functional ...
24
votes
3answers
440 views
Java 7 sorting “optimisation”
In Java6 both quicksort and mergesort were used in Arrays#sort, for primitive and object arrays respectively. In Java7 these have both changed, to DualPivotQuicksort and Timsort.
In the source for ...
24
votes
5answers
2k views
Why does the JVM still not support tail-call optimization?
Two years after does-the-jvm-prevent-tail-call-optimizations, there seems to be a prototype implementation and MLVM has listed the feature as "proto 80%" for some time now.
Is there no active ...
24
votes
8answers
4k views
Java “Virtual Machine” vs. Python “Interpreter” parlance?
It's seems rare to read of a Python "virtual machine" while in Java "virtual machine" is used all the time. Both interpret byte codes, why call one a virtual machine and the other an interpreter?
24
votes
5answers
7k views
What can you not do on the Dalvik VM (Android's VM) that you can in Sun VM?
I know that you can run almost all Java in Dalvik's VM that you can in Java's VM but the limitations are not very clear. Has anyone run into any major stumbling blocks? Any major libraries having ...
23
votes
14answers
70k views
Java Refuses to Start - Could not reserve enough space for object heap
Background
We have a pool of aproximately 20 linux blades. Some are running Suse, some are running Redhat. ALL share NAS space which contains the following 3 folders:
/NAS/app/java - a symlink ...
22
votes
3answers
324 views
Does Scala work well on proprietary JVM's?
My company has a large legacy Java code base and many of our customers run WebSphere and WebLogic. We are considering starting to use Scala but have been unable to confirm that Scala (2.9.X) works ...
22
votes
3answers
243 views
Weird behavior with main method
I have a class like -
public class Test{
public static void main(String[] args){
for(String s: args){
System.out.println(s);
}
}
}
When I ran this program like ...
22
votes
4answers
768 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, ...
22
votes
4answers
3k 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 ...
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
10answers
1k views
Killer facility or scenario that would make another JVM a better choice than the Sun JVM?
For Java SE there are several JVM's available for running in production on x86:
IBM J9
Oracle JRockit - http://www.oracle.com/technology/products/jrockit/index.html
Apache Harmony - ...
21
votes
4answers
1k 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 ...
20
votes
8answers
6k views
In which language are the Java compiler, JVM and Java written?
In which languages are the Java compiler (javac), the virtual machine (JVM) and the java starter written?
20
votes
4answers
10k views
Maven 2.1.0 not passing on system properties to Java virtual machine
We use the command line to pass on system properties to the Java
virtual machine when running our Hudson builds on a Linux box. It used
to work quite well in 2.0.9 by since we upgraded to 2.1.0 it ...
20
votes
8answers
1k 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 ...
19
votes
3answers
457 views
Three hours taken for GC to bring down 1.2GB of heap, what could be the reason?
in one of our servers, Garbage Collection took nearly three hours to try to bring down (successfully) 1.2GB of heap memory. From 1.4GB to 200MB.
During this time the CPU usage was high, almost ...
19
votes
5answers
1k views
Why is the maximum size of the Java heap fixed?
It is not possible to increase the maximum size of Java's heap after the VM has started. What are the technical reasons for this? Do the garbage collection algorithms depend on having a fixed amount ...
18
votes
4answers
2k views
Can I program for android using any JVM language?
Can I use other JVM languages besides Java (e.g. jruby, jython, clojure) to program for android, or is it java only?
There was a similar question asked over a year ago but I wasn't sure if there'd ...
18
votes
5answers
26k views
Is there a maximum number you can set Xmx to when trying to increase jvm memory?
Is there a max. size you can set Xmx to? I set it to 1024m and eclipse opens ok. When I set it above 1024, eclipse doesn't open and I get the error "jvm terminated. Exit code=-1"...
I was doing this ...
18
votes
5answers
1k 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, ...
18
votes
4answers
6k views
18
votes
9answers
2k 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?
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
5answers
747 views
Why is memory management so visible in Java VM?
I'm playing around with writing some simple Spring-based web apps and deploying them to Tomcat. Almost immediately, I run into the need to customize the Tomcat's JVM settings with -XX:MaxPermSize ...