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

ตัวดำเนินการ sizeof ใน C ++ คืออะไร


sizeof เป็นคีย์เวิร์ด แต่เป็นตัวดำเนินการเวลาคอมไพล์ที่กำหนดขนาดเป็นไบต์ของตัวแปรหรือประเภทข้อมูล สามารถใช้ตัวดำเนินการ sizeof เพื่อรับขนาดของคลาส โครงสร้าง ยูเนี่ยน และชนิดข้อมูลอื่น ๆ ที่ผู้ใช้กำหนด ไวยากรณ์ของการใช้ sizeof มีดังนี้ −

sizeof (data type)

โดยที่ชนิดข้อมูลเป็นชนิดข้อมูลที่ต้องการ รวมทั้งคลาส โครงสร้าง ยูเนี่ยน และชนิดข้อมูลอื่นๆ ที่ผู้ใช้กำหนดเอง เมื่อตัวดำเนินการ sizeof ใช้กับวัตถุประเภท char จะได้ค่า 1 เมื่อใช้ตัวดำเนินการ sizeof กับอาร์เรย์ จะให้ผลจำนวนไบต์ทั้งหมดในอาร์เรย์นั้น ไม่ใช่ขนาดของตัวชี้ที่แสดงโดยตัวระบุอาร์เรย์

ตัวอย่าง

มาดูตัวอย่างที่แสดงขนาดของ inbuilt บางประเภทกัน −

#include <iostream>
using namespace std;
int main() {
   cout << "Size of char : " << sizeof(char) << endl;
   cout << "Size of int : " << sizeof(int) << endl;
   cout << "Size of short int : " << sizeof(short int) << endl;
   cout << "Size of long int : " << sizeof(long int) << endl;
   cout << "Size of float : " << sizeof(float) << endl;
   cout << "Size of double : " << sizeof(double) << endl;
   cout << "Size of wchar_t : " << sizeof(wchar_t) << endl;
   return 0;
}

ผลลัพธ์

สิ่งนี้จะให้ผลลัพธ์ -

Size of char : 1
Size of int : 4
Size of short int : 2
Size of long int : 4
Size of float : 4
Size of double : 8
Size of wchar_t : 4