我在 PDcurses 显示一些符号时遇到了问题?而不是正确的字符。我做了一个小测试程序来显示代码页 437 以确定哪些符号正在工作,哪些没有。
奇怪的是,当我关闭 PDcurses 时,问题符号正确显示。
问题符号是ÇéâäàåçêëèïîÄæÆôöòûùÿÖÜ¢£₧ƒ</p>
这是没有 PDcurses 的源代码:
#include "stdafx.h"
#include <curses.h>
#include <iostream>
#include <panel.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
//initscr();
char c;
for (int a = 0; a < 16; a++)
{
for (int b = 1; b < 17; b++)
{
move(a, b - 1);
c = b + (a * 16) - 1;
//addrawch(c);
cout << c;
}
cout << "\n";
}
//refresh();
//getch();
//endwin();
return 0;
}
这是 PDcurses 的源代码:
#include "stdafx.h"
#include <curses.h>
#include <iostream>
#include <panel.h>
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
initscr();
int c;
for (int a = 0; a < 16; a++)
{
for (int b = 1; b < 17; b++)
{
move(a, b - 1);
c = b + (a * 16) - 1;
addrawch(c);
//cout << c;
}
//cout << "\n";
}
refresh();
getch();
endwin();
return 0;
}
我正在运行 Windows XP Service Pack 3 并使用 Microsoft Visual C++ 2010 Express