2

是否可以在类中使用静态方法为 Windows C++ 应用程序设置控制台的文本颜色?我的代码如下所示:

显示.h:

class Display {
public:
  Display();
  static void setTextColor(int color);
};

显示.cpp:

#include <windows.h>
#include "Display.h"

void Display::setTextColor(int color) {
  HANDLE cHandle;
  cHandle = GetStdHandle(STD_OUTPUT_HANDLE);

  SetConsoleTextAttribute(cHandle, color);
}

主.cpp:

#include <iostream>
#include "Display.h"

int main(int argc, char *argv[]) {
  std::cout << "HI"; //Outputs default color
  Display::setTextColor(9);
  std::cout << "HI"; //Still default color

  return 0;
}

谁能解释一下为什么这个静态方法不会更新文本颜色?如果内联放置,此 excat 代码将起作用。

感谢您的时间。

4

0 回答 0