自Java 9以来,版本控制可以与语义化版本控制保持一致。版本号可以是由点分隔的非空字符串序列。它包含三个主要部分:主版本号、次版本号和安全性。新的版本控制方案在Runtime. Version 类中有记录,并且可以从中访问版本信息。
版本号的格式如下:
<strong>$MAJOR.$MINOR.$SECURITY(.$otherpart)?</strong>
版本字符串可以是一个带有其他信息(如早期访问发布标识符或构建号)的版本号:
<strong>$VNUM(-$PRE)?\+$BUILD(-$OPT)? $VNUM-$PRE(-$OPT)? $VNUM(+-$OPT)?</strong>
public class VersionSchemeTest { public static void main(String args[]) { System.out.println<strong>(Runtime.version().toString()</strong>); <strong>// String representation of the version</strong> System.out.println(<strong>Runtime.version().major()</strong>); <strong>// major version number</strong> System.out.println(<strong>Runtime.version().minor()</strong>); <strong>// minor version number</strong> System.out.println(<strong>Runtime.version().security()</strong>); <strong>// security version number</strong> } }
<strong>9.0.4+11 9 0 4</strong>
以上是Java 9中的新版本方案是什么?的详细内容。更多信息请关注PHP中文网其他相关文章!