UseConcMarkSweepGC 已弃用,它的替代品是什么?

UseConcMarkSweepGC is deprecated, what is its replacement?

一个 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.

这个开关的推荐替代品是什么?

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