开发者

not all code paths return a value

I got this compiler error, what is the problem?

public PictureBox getinfo(int i, int j)
{
    return grid[i, j];
}

public  PictureBox kingmove(int i, int j)///<-----the problem is here
{
    getinfo(i, j);

    if (i < 9)
    {
        grid[i, j] = grid[i - 1, j - 1];
    }
    else
    {
     开发者_如何学JAVA   grid[i, j] = grid[i, j];
    }


Your second method has no return statement but a return-type different from void.
Add a return statement at the end of the method and not in the beginning.

And you could have edited that into your previous question.

The way you mix UI and game-logic is ugly too. The game-logic should know nothing about WinForms, picture-boxes,...
Instead write a function which takes a gamestate and renders it into some control/bitmap/picturebox/...

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜