자바 다 국어
3100 단어 자바
ChoiceFormat: Format 을 선택 하 십시오. 두 개의 구조 적 매개 변수: limits & formats, limits 와 formats 의 개수 가 같 습 니 다. 그 중에서 limits 중의 double 데 이 터 는 오름차 순 으로 배열 해 야 합 니 다. 이 double 데 이 터 는 N + 1 개의 반 개 구간 을 구성 합 니 다. 예 를 들 어 limits 는 [1, 2, 3] 이 고 {Double. NEGATIVE INFINITY, 1}, [1, 2} [2, 3}, Double. POSITIVE INFINITY} 은 ChoiceFomat. format (double) 에서포맷 할 때 들 어 오 는 double 에 따라 반 개 구간 에 떨 어 지면 해당 하 는 formats 를 호출 합 니 다.
다음은 jdk API 의 두 가지 예 입 니 다.
double[] filelimits = {0,1,2};
String[] filepart = {"are no files","is one file","are {2} files"};
ChoiceFormat fileform = new ChoiceFormat(filelimits, filepart);
MessageFormat pattform = new MessageFormat("There {0} on {1}");
Format[] testFormats = {fileform, null, NumberFormat.getInstance()};
pattform.setFormats(testFormats);
Object[] testArgs = {null, "ADisk", null};
for (int i = 0; i < 14; ++i) {
testArgs[0] = new Integer(i);
testArgs[2] = testArgs[0];
System.out.println(pattform.format(testArgs));
}
pattform. setFormats (testFormats); 포맷 할 때 대응 하 는 자리 표시 자 는 해당 하 는 testFormats 를 호출 합 니 다. 그 중에서 첫 번 째 자리 표시 자의 Format 은 Choice Fomat 이기 때문에 들 어 오 는 매개 변 수 는 filepart 의 어떤 값 을 사용 하 는 지 에 직접적인 영향 을 줍 니 다. testArgs 의 두 번 째 값 은 ADisk 고정 값 이기 때문에 Format 은 null 이 고 filepart 에서 {2} 에 유용 하기 때문에 NumberFormat 을 정의 합 니 다.
ChoiceFormat fmt = new ChoiceFormat(
"-1#is negative| 0#is zero or fraction | 1#is one |1.0<is 1+ |2#is two |2<is more than 2.");
System.out.println("Formatter Pattern : " + fmt.toPattern());
System.out.println("Format with -INF : " + fmt.format(Double.NEGATIVE_INFINITY));
System.out.println("Format with -1.0 : " + fmt.format(-1.0));
System.out.println("Format with 0 : " + fmt.format(0));
System.out.println("Format with 0.9 : " + fmt.format(0.9));
System.out.println("Format with 1.0 : " + fmt.format(1));
System.out.println("Format with 1.5 : " + fmt.format(1.5));
System.out.println("Format with 2 : " + fmt.format(2));
System.out.println("Format with 2.1 : " + fmt.format(2.1));
System.out.println("Format with NaN : " + fmt.format(Double.NaN));
System.out.println("Format with +INF : " + fmt.format(Double.POSITIVE_INFINITY));
각 limit & format 사 이 는 | 으로 구분 되 며, 각각 limit & format 내 부 는 \ # 또는 < 로 구분 합 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.