Java 9부터 버전 관리는 Semantic Versioning과 일치할 수 있습니다. 버전 번호는 점으로 구분된 일련의 비어 있지 않은 문자열일 수 있습니다. 여기에는 주 버전 번호, 부 버전 번호, 보안의 세 가지 주요 부분이 포함되어 있습니다. 새로운 버전 제어 체계는 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!