本帖最后由 追影 于 2013-9-23 09:49 编辑
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace 异常
- {
- class Program
- {
- static void Main(string[] args)
- {
- int result = GetNumber(3);
- }
- static int GetNumber(int index)
- {
- int[] nums = { 300, 600, 900 };
- if (index >= nums.Length)
- {
- throw new IndexOutOfRangeException();//为什么不处理啊,想不通
- }
- return nums[index];
- }
- }
-
- }
复制代码 纠结哦,为什么不处理,不是new了么
|