gpt4 book ai didi

c++ - 在 C++ 中获取 ncurses chtype 或 unsigned char 的整数值

转载 作者:行者123 更新时间:2023-11-28 05:10:24 26 4
gpt4 key购买 nike

我正在尝试获取 ncurses 替代字符表字符的整数值。

#include <iostream>

int main() {
uint i = ACS_S7; //I've also tried other values
std::cout << i << std::endl;
}

虽然只是打印0

最佳答案

也许你没有调用 initscr() 。在 ncurses 中做任何其他事情之前必须调用它。

在这种情况下,ACS_S7 是一个引用静态数组的宏,initscr() 设置的一部分根据当前语言环境等填充该数组.

关于c++ - 在 C++ 中获取 ncurses chtype 或 unsigned char 的整数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43648226/

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