免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1933 | 回复: 3
打印 上一主题 下一主题

《linux c 程序设计》示例的一处BUG。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-10-11 13:44 |只看该作者 |倒序浏览
第4.2.6节的例子。


  1. #include<unistd.h>
  2. #include<curses.h>

  3. int
  4. main()
  5. {
  6.     const char witch_one[]="First witch";
  7.     const char witch_two[]="Second witch";
  8.     const char * scan_ptr;
  9.    
  10.     initscr();
  11. /*
  12. * 以上我们进行必要的初始化
  13. */

  14.     move(5,15);
  15.     attron(A_BOLD);
  16.     printw("%s","Macheth");
  17.     attroff(A_BOLD);
  18.     refresh();
  19.     sleep(1);

  20.     move(8,15);
  21.     attron(A_REVERSE);
  22.     printw("%s","Thunder and Lightning");
  23.     attroff(A_REVERSE);
  24.     refresh();
  25.     sleep(1);

  26.     move(10,10);
  27.     printw("%s","When shall we three meet again");
  28.     move(11,23);
  29.     printw("%s","In thunder,lightning or in rain?");
  30.     move(13,10);
  31.     printw("%s","When the hurlyburly's done.");
  32.     move(14,23);
  33.     printw("%s","When the battle's lost and won");
  34.     refresh();
  35.     sleep(1);

  36. /*
  37. *    以上我们以三种方式进行显示
  38. *    请注意属性开关函数
  39. */   

  40.     attron(A_REVERSE);
  41.     scan_ptr = witch_one + strlen(witch_one);
  42.     while(scan_ptr!=witch_one){ [color=Red]很明显此处是想用倒插的方式显示witch_one整个字符串。但是却漏掉了第一个 字符,显示了不该显示的'\0',以下三处也是类似错误。[/color]
  43.         move(20,10);
  44.              insch(*scan_ptr--);
  45.           }

  46.    scan_ptr = witch_two + strlen(witch_two);
  47.    while(scan_ptr!=witch_two){
  48.         move(21,10);
  49.              insch(* scan_ptr--);
  50.          }
  51.    
  52.     scan_ptr = witch_two + strlen(witch_two);
  53.     while(scan_ptr!=witch_two){
  54.         move(22,10);
  55.              insch(* scan_ptr--);
  56.          }       

  57.     attroff(A_REVERSE);

  58.     refresh();
  59.     sleep(1);
  60. /*
  61. *  最后演示了insch函数的用法
  62. */  
  63.     sleep(5);
  64.     endwin();
  65.     exit(0);
  66. }
  67. [code]
复制代码
[/code]

[ 本帖最后由 weiqiboy 于 2007-10-11 13:49 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2007-10-11 13:47 |只看该作者
如果改成这样就OK了。

  1. #include<unistd.h>
  2. #include<curses.h>

  3. int
  4. main()
  5. {
  6.     const char witch_one[]="First witch";
  7.     const char witch_two[]="Second witch";
  8.     const char * scan_ptr;
  9.    
  10.     initscr();
  11. /*
  12. * 以上我们进行必要的初始化
  13. */

  14.     move(5,15);
  15.     attron(A_BOLD);
  16.     printw("%s","Macheth");
  17.     attroff(A_BOLD);
  18.     refresh();
  19.     sleep(1);

  20.     move(8,15);
  21.     attron(A_REVERSE);
  22.     printw("%s","Thunder and Lightning");
  23.     attroff(A_REVERSE);
  24.     refresh();
  25.     sleep(1);

  26.     move(10,10);
  27.     printw("%s","When shall we three meet again");
  28.     move(11,23);
  29.     printw("%s","In thunder,lightning or in rain?");
  30.     move(13,10);
  31.     printw("%s","When the hurlyburly's done.");
  32.     move(14,23);
  33.     printw("%s","When the battle's lost and won");
  34.     refresh();
  35.     sleep(1);

  36. /*
  37. *    以上我们以三种方式进行显示
  38. *    请注意属性开关函数
  39. */   

  40.     attron(A_REVERSE);
  41.     scan_ptr = witch_one + strlen(witch_one);
  42.     while(--scan_ptr>=witch_one){
  43.         move(20,10);
  44.         insch(*scan_ptr);
  45.     }

  46.     scan_ptr = witch_two + strlen(witch_two);
  47.     while(--scan_ptr>=witch_two){
  48.         move(21,10);
  49.         insch(* scan_ptr);
  50.     }
  51.    
  52.     scan_ptr = witch_two + strlen(witch_two);
  53.     while(--scan_ptr>=witch_two){
  54.         move(22,10);
  55.         insch(* scan_ptr);
  56.     }       

  57.     attroff(A_REVERSE);

  58.     refresh();
  59.     sleep(1);
  60. /*
  61. *  最后演示了insch函数的用法
  62. */  
  63.     sleep(5);
  64.     endwin();
  65.     exit(0);
  66. }
复制代码

论坛徽章:
0
3 [报告]
发表于 2007-10-11 14:33 |只看该作者
呃。。。

论坛徽章:
0
4 [报告]
发表于 2007-10-11 20:32 |只看该作者
呵呵,楼主看书还挺仔细
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP