เมธอด BitConverter.Int64BitsToDouble() ใน C# ใช้เพื่อตีความจำนวนเต็ม 64 บิตที่ระบุซ้ำเป็นเลขทศนิยมแบบ double-precision
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
public static double Int64BitsToDouble (long val);
ด้านบน ค่าพารามิเตอร์คือตัวเลขที่จะแปลง
ตัวอย่าง
ให้เราดูตัวอย่างการใช้วิธีการ BitConverter.Int64BitsToDouble() -
using System;
public class Demo {
public static void Main(){
long d = 9846587687;
Console.Write("Value (64-bit signed integer) = "+d);
double res = BitConverter.Int64BitsToDouble(d);
Console.Write("\nValue (double-precision floating point number) = "+res);
}
} ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Value (64-bit signed integer) = 9846587687 Value (double-precision floating point number) = 4.86486070491012E-314
ตัวอย่าง
เรามาดูตัวอย่างกัน −
using System;
public class Demo {
public static void Main(){
long d = 20;
Console.Write("Value (64-bit signed integer) = "+d);
double res = BitConverter.Int64BitsToDouble(d);
Console.Write("\nValue (double-precision floating point number) = "+res);
}
} ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Value (64-bit signed integer) = 20 Value (double-precision floating point number) = 9.88131291682493E-323