NumberFormat 클래스 질문이요
미르
2023.08.29
소스코드
double d= 1.5;
numberformat fmt = numberformat.getpercentinstance();
system.out.println(fmt.format(d));
이렇게하면 출력결과가 마음대로 반올림해서 2%가 출력되는데
1.5%가 출력되게 하려면 어떻게 해야되나요.
그리고 교재에서 numberformat클래스는 new연산자로 객체를 생성할수 없고 static메소드를 이용한다고 하던데
어디에선가
numberformat format = new numberformat();
로 객체 생성하는 명령문을 봤거든요.
어떤것이 맞는건지 말모르겠네요.
두가지 궁금한점때문에 질문 올립니다 ^^: