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

Cast Operator () ใน C # คืออะไร


การแปลงประเภทเป็นการแปลงข้อมูลประเภทหนึ่งไปเป็นอีกประเภทหนึ่ง ผู้ใช้ทำการแปลงอย่างชัดเจนอย่างชัดเจนโดยใช้ฟังก์ชันที่กำหนดไว้ล่วงหน้าและต้องใช้ตัวดำเนินการแคสต์

ให้เรามาดูตัวอย่างการใช้ double to int −

ตัวอย่าง

using System;

namespace Demo {

   class Program {

      static void Main(string[] args) {
         double a = 4563.56;
         int x;

         x = (int)a;
         Console.WriteLine(x);
         Console.ReadKey();
      }
   }
}

ในการแคสต์แบบ double to int เราได้ทำการแคสต์แบบโจ่งแจ้ง -

x = (int)a;