วันอาทิตย์ที่ 17 สิงหาคม พ.ศ. 2557

Java java.math BigDecimal toEngineeringString()

Description Of BigDecimal: toEngineeringString()

The java.math.BigDecimal.toEngineeringString() returns a string representation of this BigDecimal , using engineering notation if an exponent is needed.

BigDecimal.toEngineeringString() method returns string representation of this BigDecimal , using engineering notation if an exponent is needed.

Code Example Java BigDecimal

import java.math.BigDecimal;

public class BigDecimalExam {
 public static void main(String[] args) {
  BigDecimal bg = new BigDecimal("1E+5");

  System.out.println("Engineering string value of " + bg + " is "
    + bg.toEngineeringString());
 }
}


yengo หรือ buzzcity

ไม่มีความคิดเห็น :

แสดงความคิดเห็น