JVM参数X和XX的区别
曾经看过一个视频:
-XX 对于系统级别的(jvm)配置,例如配置日志信息,或者说jvm使用什么样的垃圾回收器
非-XX 基本上都是对应用层面上的配置
但是官网是这样写的:
"-X"开头的参数
"-X"开头的参数是非标准参数,也就是只能被部分VM识别,而不能被全部VM识别的参数。
官网解释:Options that begin with -X are non-standard (not guaranteed to be supported on all VM implementations), and are subject to change without notice in subsequent releases of the JDK
"-XX"开头的参数
"-XX"开头的参数是非稳定参数,随时可能被修改或者移除。
官网解释:
Options that are specified with -XX are not stable and are subject to change without notice.
以上是 JVM参数X和XX的区别 的全部内容, 来源链接: utcz.com/z/512542.html