3

这有效:

#!/usr/bin/env perl
use warnings;
use 5.012;
use Curses;

initscr();

addstr( 5, 5, 'Hello, World!' );

refresh();
sleep 2;
endwin();

但是如果我向“addstr”函数添加一个属性,它就不再起作用了:

addstr( 5, 5, 'Hello, World!', A_BOLD );

我需要改变什么,才能得到一个大胆的“Hello World”?

4

1 回答 1

4

addstr()不接受属性。使用attron()/attroff()代替:

attron(A_BOLD);
addstr(5, 5, 'Hello, world!');
attroff(A_BOLD);
于 2011-02-11T11:03:18.540 回答