有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java UseConMarkSweepGC已被弃用,它的替代品是什么?

一个java程序发出了这个警告,JRE 10.0.2:

Java HotSpot(TM) 64-Bit Server VM warning: Option UseConcMarkSweepGC was deprecated in version 9.0 and will likely be removed in a future release.

此开关的建议更换件是什么


共 (1) 个答案

  1. # 1 楼答案

    Dropping support for CMS and then removing the CMS code, or at least more thoroughly segregating it, will reduce the maintenance burden of the GC code base and accelerate new development. The G1 garbage collector is intended, in the long term, to be a replacement for most uses of CMS.

    From the Official JEP