類型轉換是將一種類型的資料轉換為另一種類型的資料。明確轉換由使用者使用預定義函數明確完成,並且需要強制轉換運算子。
讓我們來看一個將double 強制轉換為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 轉換為int,我們執行了明確型別轉換-
x = (int)a;
以上是C# 中的強制轉換運算子 () 是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!