0

我想在控制台窗口上显示一条消息,只要该消息不会超过窗口的默认 0-79 X 宽度。我的代码如下所示:

int xRemaining = 80 - mRobot.CurrentPos.X;
string message = "ID{0:d} Facing {1:s} at ({2:d},{3:d}) home is({4:d},{5:d})";
string formatMessage = string.Format(message,mRobot.ID,mRobot.getDir.ToString()/*...*/;

if(mRobot.CurrentPos.Y < 24)
{
  if (xRemaining < formatMessage.Length)
    {
     Console.SetCursorPosition((mRobot.CurrentPos.X - xRemaining), mRobot.CurrentPos.Y+1); 
    }
  else
    {
     Console.SetCursorPosition(mRobot.CurrentPos.X, mRobot.CurrentPos.Y + 1);
    }
}

else
{
  if(xRemaining < formatMessage.Length)
  {
   Console.SetCursorPosition((mRobot.CurrentPos.X-xRemaining), mRobot.CurrentPos.Y-1);
  }
  else
   {
    Console.SetCursorPosition(mRobot.CurrentPos.X, mRobot.CurrentPos.Y-1);
   }
}
Console.Write(message,,mRobot.ID, mRobot.getDir.ToString(), mRobot.CurrentPos.X, mRobot.CurrentPos.Y,mRobot.Home.X,mRobot.Home.Y);

编辑:使用 string.Format,但似乎仍然运行到下一行:/

4

2 回答 2

1

您可以使用以下方法格式化消息string.Format

string message = "ID{0:d} Facing {1:s} at ({2:d,3:d}) home is({4:d,5:d})";
string formattedMessage = string.Format(message, mRobot.ID, mRobot.getDir.ToString(), /* ... */);
int msgLength = formattedMessage.Length;

稍后,您可以使用以下方式显示它:

Console.WriteLine(formattedMessage);
于 2013-03-23T15:04:34.207 回答
0

您需要在获取字符串长度之前格式化字符串。您当前正在获取未格式化字符串的长度。为此,您需要使用以下string.Format命令:

string output = string.Format(message, .....);

....

if (xRemaining < output.Length)
{
    ....
}

....

Console.Write(output);
于 2013-03-23T15:05:48.067 回答