Differences between JVM implementations

前端 未结 8 1118
南旧
南旧 2020-12-13 04:52

Where do JVM Implementations differ (except licensing)? Does every JVM implement Type Erasure for the Generic handling?

Where are the differences between:

8条回答
  •  北荒
    北荒 (楼主)
    2020-12-13 05:48

    Another difference between JVMs is behaviour on undocumented API. (e.g. com.sun.xxx) For example, Sun's JVM and IBM's JVM both have slightly different behaviour on signal handling. (IBM's JVM doesn't allow the application to trap the "INT" signal in certain cases.)

提交回复
热议问题