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

วิธีใช้ตัวดำเนินการ sizeof() เพื่อค้นหาขนาดของชนิดข้อมูลหรือตัวแปรใน C#


sizeof() datatype จะคืนค่าขนาดของชนิดข้อมูล สมมติว่าคุณต้องหาขนาดของประเภทข้อมูล int -

sizeof(int);

สำหรับประเภทข้อมูลสองเท่า

sizeof(double);

ให้เราดูตัวอย่างที่สมบูรณ์เพื่อค้นหาขนาดของประเภทข้อมูลต่างๆ -

ตัวอย่าง

using System;

namespace Demo {

   class Program {

      static void Main(string[] args) {

         Console.WriteLine("The size of int is {0}", sizeof(int));
         Console.WriteLine("The size of int is {0}", sizeof(char));
         Console.WriteLine("The size of short is {0}", sizeof(short));
         Console.WriteLine("The size of long is {0}", sizeof(long));
         Console.WriteLine("The size of double is {0}", sizeof(double));

         Console.ReadLine();
      }
   }
}

ผลลัพธ์

The size of int is 4
The size of int is 2
The size of short is 2
The size of long is 8
The size of double is 8