//int? temp =5; // int a = (int)temp; //5 //int a = Convert.ToInt32(temp);//5
int? temp = null; int a = (int)temp; // 报错 int a = Convert.ToInt32(temp);//0
博客园 © 2004-2025 浙公网安备 33010602011771号 浙ICP备2021040463号-3