자리수 3자리 무조건 출력
val period = "%.3f" format (1000.toDouble/freqMHz)
아래 자리 0없이 출력
val divideInfo = clockInfo.physical.freqMHz / clockInfo.parent._2.physical.freqMHz
val formatter = new DecimalFormat("#.###")
val period = formatter.format(divideInfo)
'Scala' 카테고리의 다른 글
Scala - Annotation Customizing Example. (0) | 2022.04.20 |
---|---|
Scala - 문자열에서 숫자만 추출 (0) | 2022.02.18 |