- 论坛徽章:
- 0
|
第4.2.6节的例子。
- #include<unistd.h>
- #include<curses.h>
- int
- main()
- {
- const char witch_one[]="First witch";
- const char witch_two[]="Second witch";
- const char * scan_ptr;
-
- initscr();
- /*
- * 以上我们进行必要的初始化
- */
- move(5,15);
- attron(A_BOLD);
- printw("%s","Macheth");
- attroff(A_BOLD);
- refresh();
- sleep(1);
- move(8,15);
- attron(A_REVERSE);
- printw("%s","Thunder and Lightning");
- attroff(A_REVERSE);
- refresh();
- sleep(1);
- move(10,10);
- printw("%s","When shall we three meet again");
- move(11,23);
- printw("%s","In thunder,lightning or in rain?");
- move(13,10);
- printw("%s","When the hurlyburly's done.");
- move(14,23);
- printw("%s","When the battle's lost and won");
- refresh();
- sleep(1);
- /*
- * 以上我们以三种方式进行显示
- * 请注意属性开关函数
- */
- attron(A_REVERSE);
- scan_ptr = witch_one + strlen(witch_one);
- while(scan_ptr!=witch_one){ [color=Red]很明显此处是想用倒插的方式显示witch_one整个字符串。但是却漏掉了第一个 字符,显示了不该显示的'\0',以下三处也是类似错误。[/color]
- move(20,10);
- insch(*scan_ptr--);
- }
- scan_ptr = witch_two + strlen(witch_two);
- while(scan_ptr!=witch_two){
- move(21,10);
- insch(* scan_ptr--);
- }
-
- scan_ptr = witch_two + strlen(witch_two);
- while(scan_ptr!=witch_two){
- move(22,10);
- insch(* scan_ptr--);
- }
- attroff(A_REVERSE);
- refresh();
- sleep(1);
- /*
- * 最后演示了insch函数的用法
- */
- sleep(5);
- endwin();
- exit(0);
- }
- [code]
复制代码 [/code]
[ 本帖最后由 weiqiboy 于 2007-10-11 13:49 编辑 ] |
|