You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
-
14Slightly O/T, but can you link to Oracle's three "official JVM implementations"?skomisa– skomisa2020-03-17 15:43:05 +00:00Commented Mar 17, 2020 at 15:43
-
2An important note re "performance" is that different versions of the JVM are optimized for different usage scenarios. If one implementation takes 100 milliseconds to run a piece of code the first time, and 0.01 milliseconds per time thereafter, while another takes 1 millisecond every time, the latter might be about 100 times as fast if the piece of code runs only once, but the former might be almost 100 times as fast if the piece of code runs a million times.supercat– supercat2020-03-17 21:37:21 +00:00Commented Mar 17, 2020 at 21:37
-
Note that the earlier licensing policies required payment for many uses, so there were many more reasons not to like them. As far as starting of Android project mobile use required commercial license, so Android got its own JVM too. And they've recently become stricter again, but there is now the OpenJDK that didn't exist bak where GCJ and such were created.Jan Hudec– Jan Hudec2020-03-17 22:15:02 +00:00Commented Mar 17, 2020 at 22:15
-
1@skomisa The answer names three Oracle JVM implementations (HotSpot, Squawk, KVM).TRiG– TRiG2020-03-18 11:46:43 +00:00Commented Mar 18, 2020 at 11:46
-
1@Jimmy JRockit hasn't been a product in almost a decade by now, not sure we would really want to count that ;) (There's Graal for another Oracle JVM though)Voo– Voo2020-03-18 15:05:16 +00:00Commented Mar 18, 2020 at 15:05
|
Show 2 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-java