抛出IndexOutOfRangeException

时间:2013-09-18 03:38:11

标签: c#

我是C#的新手,出于某种原因,我被抛出一个IndexOutOfRangeException,用于一个边界为0和0的子串。

我不认为这是我的示波器的问题,因为我已经过测试,以确保所有内容都定义在使用它的位置。

我正在尝试制作一个非常简单的anagram生成器:

using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Linq; 
using System.Text; 
using System.Windows.Forms; 



namespace WindowsFormsApplication1
{

    public partial class Form1 : Form
    {
        string[] d = { "Apple", "Bass", "Cat", "Dog", "Ear", "Flamingo", "Gear", "Hat", "Infidel", "Jackrabbit", "Kangaroo", "Lathargic", "Monkey", "Nude", "Ozzymandis", "Python", "Queen", "Rat", "Sarcastic", "Tungston", "Urine", "Virginia", "Wool", "Xylophone", "Yo-yo", "Zebra", " "};
        string var;
        int len = 0;
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            var = textBox2.Text;
            //textBox1.Text = d[2];
            for (int y = 0; y <= var.Length; y++)
            {
                for (int x = 0; x <= d.Length; x++)
                {
                    if (d[x].Substring(0, 0).ToUpper() == var.Substring(len, len).ToUpper())
                    {
                        textBox1.Text = textBox1.Text + "\n" + d[x];
                        len = len + 1;
                    }
                }
            }
        }

        private void textBox1_TextChanged(object sender, EventArgs e)
        {

        }

        private void textBox2_TextChanged(object sender, EventArgs e)
        {

        }
    }
}

3 个答案:

答案 0 :(得分:1)

从零开始的数组(或零基索引字符串)的上限长度减少一个。

    for (int y = 0; y < var.Length; y++)
    {
            for (int x = 0; x < d.Length; x++)

答案 1 :(得分:1)

您试图在两个地方读取数组的结尾:

for (int y = 0; y <= var.Length; y++)  // here (var is a string which is an array of char)
{
    for (int x = 0; x <= d.Length; x++) // and here

数组使用从零开始的索引。因此,最后一个元素位于索引位置[Length-1]。

当您尝试访问[Length]位置的元素时,会得到IndexOutOfRangeException。这个位置是结束时的一个元素。

不要让循环计数器超过Length-1:

for (int y = 0; y < var.Length; y++)  
{                 
    for (int x = 0; x < d.Length; x++)

答案 2 :(得分:0)

在基于零的索引中,你不能在终点上索引,这将超出范围,对于长度10,你必须从0-9迭代

for (int y = 0; y < var.Length; y++)
            {
                for (int x = 0; x < d.Length; x++)
                {
                    if (d[x].Substring(0, 0).ToUpper() == var.Substring(len, len).ToUpper())
                    {
                        textBox1.Text = textBox1.Text + "\n" + d[x];
                        len = len + 1;
                    }
                }
            }