gpt4 book ai didi

c# - Visual Studio 说 "Method must have a return type"

转载 作者:太空狗 更新时间:2023-10-29 18:01:51 26 4
gpt4 key购买 nike

它说

"Method must have a return type"

每当我尝试调试它时。

我不知道如何修复这个类

这是一个用 c# 编码的 2d 游戏的播放器类

public class player
{
public float moveSpeed;
public Vector2 position;
public Texture2D texture;

//default constructer
public Player(Texture2D tex, Vector2 startPos)
{
position = startPos;
texture = tex;
moveSpeed = 5.0f;
}
public void Update(GameTime gameTime)
{
//------------------------------------------
//check for keyboard input(keyboard IF statements)

}
public void Draw(SpriteBatch spriteBatch)
{
spriteBatch.Draw(texture, position, Color.White);
}
}

最佳答案

您的类是 player 但构造函数是 Player,因为它们不同,所以期望 Player 是方法而不是构造函数

把类名改成Player就可以了

关于c# - Visual Studio 说 "Method must have a return type",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22739932/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com