Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

การใช้คลาส StrictMath ใน Java คืออะไร?


java.lang.StrictMath เป็นคลาสสุดท้ายและเป็นคลาสย่อยของ Object ระดับ. คลาส StrictMath ประกอบด้วยเมธอดสำหรับการดำเนินการตัวเลขพื้นฐาน เช่น เลขชี้กำลัง ลอการิทึม รากที่สอง และ ฟังก์ชันตรีโกณมิติ . เราไม่จำเป็นต้องสร้างอินสแตนซ์สำหรับ StrictMath คลาสเพราะวิธีการทั้งหมดในคลาส StrictMath เป็น เมธอดแบบคงที่ . วิธีการที่สำคัญของคลาส StrictMath คือ abs(), acos(), asin(), atan(), ceil(), floor(), log(), max(), min(), pow(), สุ่ม(), รอบ() และอื่นๆ

ไวยากรณ์

คลาสสุดท้ายสาธารณะ StrictMath ขยาย Object

ตัวอย่าง

คลาสสาธารณะ StrictMathTest { โมฆะคงที่สาธารณะ main (สตริง args []) { System.out.println ("ค่าสัมบูรณ์:" + StrictMath.abs (-100.50)); System.out.println("ค่าเพดาน:" + StrictMath.ceil(100.55)); System.out.println("ค่าพื้น :" + StrictMath.floor(100.55)); System.out.println("ค่าสูงสุด :" + StrictMath.max(100,200)); System.out.println("มูลค่าขั้นต่ำ :" + StrictMath.min(100,200)); System.out.println("ค่าสุ่ม :" + StrictMath.random()); System.out.println("ค่าที่ปัดเศษ:" + StrictMath.round(100.75)); System.out.println("ค่ารากที่สอง :" + StrictMath.sqrt(2)); System.out.println("ค่า PI:" + StrictMath.PI); System.out.println("ค่าบันทึก:" + StrictMath.log(10.55)); }}

ผลลัพธ์

ค่าสัมบูรณ์:100.5Ceil Value :101.0Floor Value :100.0Maximum Value :200Minimum Value :100 Random Value :0.22227639516105102 Round Value:101Square Root Value :1.4142135623730951PI Value:3.141592653589793Log Value:2.356pre125859922075