Computer >> Máy Tính >  >> Lập trình >> C#

Phương thức BitConverter.Int64BitsToDouble () trong C #

Phương thức BitConverter.Int64BitsToDouble () trong C # được sử dụng để diễn giải lại số nguyên có dấu 64-bit được chỉ định thành một số dấu phẩy động có độ chính xác kép.

Cú pháp

Sau đây là cú pháp -

public static double Int64BitsToDouble (long val);

Ở trên, giá trị tham số là số cần chuyển đổi.

Ví dụ

Bây giờ chúng ta hãy xem một ví dụ để triển khai phương thức 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);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Value (64-bit signed integer) = 9846587687
Value (double-precision floating point number) = 4.86486070491012E-314

Ví dụ

Hãy để chúng tôi xem một ví dụ khác -

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);
   }
}

Đầu ra

Điều này sẽ tạo ra kết quả sau -

Value (64-bit signed integer) = 20
Value (double-precision floating point number) = 9.88131291682493E-323