java.math.BigInteger.abs() จะ returns ค่าเป็น BigInteger ที่มีค่าเป็น absolute
ตัวอย่างโค้ด
import java.math.BigInteger; public class BigIntegerExam { public static void main(String[] args) { BigInteger bi1 = new BigInteger("456"); BigInteger bi2 = new BigInteger("-456"); System.out.println("Absolute value of " + bi1 + " is " + bi1.abs()); // Absolute value of 456 is 456 System.out.println("Absolute value of " + bi2 + " is " + bi2.abs()); // Absolute value of -456 is 456 } }
จากตัวอย่างข้างต้น เรามี BigInteger ซึ่งตัวแรกมีค่า 456 อีกตัวมีค่า -456 เมื่อนำไปหาค่าโดยเรียกใช้ method abs ซึ่งค่าที่ return มานั้น ตัวแรกก็ให้ค่า 456 เหมือนเดิม ส่วนอีกตัว ก็จะได้ค่า 456 ซึ่งเป็นค่า Absolute ของ -456
ไม่มีความคิดเห็น :
แสดงความคิดเห็น