我的Web服务程序应该生成一个随机代码,并将其返回给客户端程序。现在,它返回“”作为代码,而不是随机生成的代码。我的可变范围有什么问题?谢谢。

public class Service1 : System.Web.Services.WebService
{
    private string code = "";

    [WebMethod]
    public void StartGame()
    {
        // Pick a secret code
        // R, B, G, O, T, W, P, Y
        Random random = new Random();
        for (int i = 0; i < 4; i++)
        {
            int num = random.Next(8) + 1;
            if (num == 1)
                this.code += "R";
            else if (num == 2)
                this.code += "B";
            else if (num == 3)
                this.code += "G";
            else if (num == 4)
                this.code += "O";
            else if (num == 5)
                this.code += "T";
            else if (num == 6)
                this.code += "W";
            else if (num == 7)
                code += "P";
            else if (num == 8)
                this.code += "Y";
        }
    }

    [WebMethod]
    public string MakeGuess(string guess)
    {
        return this.code;
    }
}

最佳答案

问题在于那些方法在类的两个单独实例上被调用。当HTTP请求进入时,在类的新实例上调用每个方法一次,该类将被丢弃。由于HTTP协议的无状态性质,服务器将不知道这些请求以某种方式相关。

10-07 16:13
查看更多