输出一个漂亮的“块”带有 ncurses 和 C++ 的字符?
我正在使用 ncurses 用 c++ 编写一个控制台应用程序,我想输出一个可靠的 ascii 块。它基本上会用胶带粘住通常为普通字符的空白保留的所有区域。是否有我遗漏的 ASCII 字符或者我在手册中没有看到的库函数?
I'm writing a console app in c++ using ncurses and I'd like to output a solid ascii block. It'd basically tape up all of the area that would normally be reserved for white space of a normal character. Is there an ASCII character I'm missing or a library function I haven't seen in the manual?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ASCII 只有 7 位。如果您愿意使用 8 位,可以使用代码页 437:
http://en.wikipedia .org/wiki/Code_page_437
然后是 Unicode,它打开了一个全新的字符世界......
ASCII is only 7-bit. If you are willing to go with 8-bit, there is the Code Page 437:
http://en.wikipedia.org/wiki/Code_page_437
Then there is Unicode, which opens a whole new world of characters...