發布時間:2020-11-30 15:41 作者:獨孤劍 閱讀:1177
using System; namespace DemoConsole { class Program { static void Main(string[] args) { int intValue1, intValue2; long longValue1, longValue2; intValue1 = 123; longValue1 = 456; longValue2 = intValue1; // 隱式轉換 intValue2 = (int)longValue1;// 顯示轉換 Console.WriteLine("{0} = {1}", intValue1, longValue2); Console.WriteLine("(int){0} = {1}", longValue1, intValue2); Console.Read(); } } }
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對您有幫助,歡迎給作者打賞