C#Equals语句返回False

时间:2017-09-22 13:23:49

标签: c# loops random foreach equals

我的等于if语句不断返回false字母猜测不是第一个字母,有没有人知道为什么会这样?我已经调试了很多,我发现它返回一个假布尔语句。我已经google了很多,但我没有发现任何启示。如果答案是正确的长度

,前两个if语句将返回true
    using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.IO;

namespace Guess_The_Word
{

    public partial class Form1 : Form
    {
        private int wrongGuesses = 0;
        private int userGuesses;
        private int score = 0;
        private string secretWord = String.Empty;
        private string[] words;
        private string currentWord = string.Empty;
        private string userGuess = string.Empty;
        private string userInput = string.Empty;
        private string randomInput = string.Empty;


        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {



        }

        private void guessBtn_Click(object sender, EventArgs e)
        {
            char[] userInputArray = userInputBox.Text.ToLowerInvariant().ToCharArray();
            char[] currentWordCharArray = currentWord.ToLowerInvariant().ToCharArray();
            //Assume that userInput would never be superior than randomCharArray
            //And contain only one char
            for (int i = 0; i < currentWordCharArray.Length; i++)
            {
                if (userInputArray.Length > 0 && userInputArray.Length > i)
                    if (currentWordCharArray.Length > 0 && currentWordCharArray.Length > i)
                        if (userInputArray[0].Equals(currentWordCharArray[i]))

                {
                    UpdateScore();
                }
            }
            // Clean userInput in form
            userInputBox.Text = string.Empty;

        }


        private void resetGamebtn_Click(object sender, EventArgs e)
        {
            SetUpWords();


        }

        private void SetUpWords()
        {
            string path = (@"C:\commonwords.txt"); // Save the variable path with the path to the txt file
            words = File.ReadAllLines(path);
            int guessIndex = (new Random()).Next(words.Length);
            currentWord = words[guessIndex];
            wordlbl.Text = string.Empty;
            for (int i = 0; i < currentWord.Length; i++)
            {

                wordlbl.Text += "*";

            }
        }

        private void userInputBox_TextChanged(object sender, EventArgs e)
        {

        }

        private void UpdateScore()
        {
            score++;
            scorelbl.Text = Convert.ToString(score);
        }

    }
}

4 个答案:

答案 0 :(得分:6)

您必须保存生成的值,将for循环改为foreach

 for (int i = 0; i < randomArray.Length; ++i)
    randomArray[i] = rand.Next(Min, Max);

答案 1 :(得分:2)

foreach (int value in randomArray)
{
    rand.Next(Min, Max);
}

没有按照你的想法行事。

那里的值不是设置,它只是迭代数组并生成一些随机数(并抛弃它们,因为你没有将rand.Next分配给任何东西)。

您需要将其替换为:

for (var i=0; i < randomArray.Length; i++)
{
    randomArray[i] = rand.Next(Min, Max);
}

答案 2 :(得分:0)

您没有使用随机数初始化数组。 改变

foreach (int value in randomArray)
    {
        rand.Next(Min, Max);
    }

for (var i=0; i < randomArray.Length; i++) {
    randomArray[i] = rand.Next(Min, Max);
}

答案 3 :(得分:0)

您的问题是因为您没有为任何值分配rand.Next()。将您的foreach循环更改为此for循环:

for (int i=0;i<6;i++)
{
    randomArray[i] = rand.Next(Min, Max);
}

您当前的代码所做的是遍历数组中的每个元素(在本例中为6),调用rand.Next(),但从不将其分配给任何元素。