程序猿小小弟 2020-08-19 18:30 采纳率: 100%
浏览 81
已采纳

switch语句未经处理的异常?

萌新在学习写一个飞行棋
运行时switch那里会出现“未经处理的异常”
Maps是一个字段

```public static int[] Maps = new int[100];
public static string Condition(int i) //声明一个i,给方法里使用
{
string str = " ";
if ((Player[0] == Player[1]) && Player[1] == i)//如果玩家A和玩家B在一起时
{
str = "<>";
}
else if (Player[0] == i)//玩家A
{
str = "A";
}
else if (Player[1] == i)//玩家B
{
str = "B";
}
else
{
switch (Maps[i])
{
case 0://调用上面的用来定义道具得是数字,数组里未经改变的值都是0
Console.ForegroundColor = ConsoleColor.White;
str = "□";//普通格子
break;
case 1:
Console.ForegroundColor = ConsoleColor.Green;
str = "☆";//幸运星
break;
case 2:
Console.ForegroundColor = ConsoleColor.Red;
str = "?";//地雷
break;
case 3:
Console.ForegroundColor = ConsoleColor.Blue;
str = "■";//暂停
break;
case 4:
Console.ForegroundColor = ConsoleColor.Yellow;
str = "卍";//时空隧道
break;
}
}
return str;

}

  • 写回答

1条回答 默认 最新

  • threenewbee 2020-08-19 18:59
    关注

    调用的代码呢,switch (Maps[i]),这里i传入多少,是否越界

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 目标计数模型训练过程中的问题
  • ¥100 Acess连接SQL 数据库后 不能用中文筛选
  • ¥15 用友U9Cloud的webapi
  • ¥20 电脑拓展屏桌面被莫名遮挡
  • ¥20 ensp,用局域网解决
  • ¥15 Python语言实验
  • ¥15 我每周要在投影仪优酷上自动连续播放112场电影,我每一周遥控操作一次投影仪,并使得电影永远不重复播放,请问怎样操作好呢?有那么多电影看吗?
  • ¥20 电脑重启停留在grub界面,引导出错需修复
  • ¥15 matlab透明图叠加
  • ¥50 基于stm32l4系列 使用blunrg-ms的ble gatt 创建 hid 服务失败