免费注册 查看新帖 |

Chinaunix

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

[SCO UNIX] 《unix/linux下的curses库开发指南》一书有错误不少。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-12-25 20:00 |只看该作者 |倒序浏览
两天前买了该书,翻了翻,发现其中错误不少。
其中 page: 217的
  set_field_type(field,TYPE_HEX,'*',0X0100L,0X1000)
一句,作者说 '*'是填充字符。其实有误,应该是一个精度数。不知道大家认同否。
下面提供一个测试程序:

#include <form.h>;
#include <ctype.h>;
#include <varargs.h>;
extern long     strtol ();

#define isblank(c) ((c) == ' ')

typedef struct {
        int     padding;
        long    vmin, vmax;
} HEX;

static char     *make_hex (ap)
va_list *ap;
{
        HEX * n = (HEX * ) malloc (sizeof (HEX));

        if (n) {
              n ->;padding = va_arg (*ap, int);
                n ->;vmin = va_arg (*ap, long);
                n ->;vmax = va_arg (*ap, long);
        }
        return (char *) n;
}


static char     *copy_hex (arg)
char    *arg;
{
        HEX * n = (HEX * ) malloc (sizeof (HEX));
        if (n)
                *n = *((HEX * ) arg);
        return (char *) n;
}


static void     free_hex (arg)
char    *arg;
{
        free (arg);
}
static int      fcheck_hex (f, arg)
FIELD *f;
char    *arg;
{
        HEX * n = (HEX * ) arg;
        int     padding = n ->;padding;
        long    vmin = n ->;vmin;
        long    vmax = n ->;vmax;
        char    buf[80];
        char    *x = field_buffer (f, 0);

        while (*x && isblank (*x))
                ++x;

        if (*x) {
                char    *t = x;

                while (*x && isxdigit (*x))
                        ++x;
                while (*x && isblank (*x))
                        ++x;

                if (!*x) {
long    v = strtol (t, (char **) 0, 16);

                        if (v >;= vmin && v <= vmax) {
                                sprintf (buf, "%.*lx", padding, v);
                                set_field_buffer (f, 0, buf);
                                return TRUE;
                        }
                }
        }
        return FALSE;
}


static int      ccheck_hex (c, arg)
int     c;
char    *arg;
{
         return isxdigit (c);
}
保存为:nt.c
#include <form.h>;
#include <locale.h>;
#include "nt.c"

int     main()
{
        FIELD * field[3];
        FORM * my_form;
        int     ch;
        FIELDTYPE * TYPE_HEX = NULL ;

        setlocale( LC_CTYPE, "" );

        /* Initialize curses */
        initscr();
        cbreak();
        noecho();
        keypad(stdscr, TRUE);
        meta( stdscr, TRUE );


        TYPE_HEX = new_fieldtype (fcheck_hex, ccheck_hex);
        set_fieldtype_arg (TYPE_HEX, make_hex, copy_hex, free_hex);
    /* Initialize the fields */
        field[0] = new_field(1, 5, 4, 18, 0, 0);
        field[1] = new_field(1, 5, 6, 18, 0, 0);
        field[2] = NULL;

        set_field_type(field[0], TYPE_HEX,5, 0x0000L, 0x1000L) ;
        //set_field_type(field[0], TYPE_HEX) ;
        /* Set field options */
        set_field_back(field[0], A_UNDERLINE); /* Print a line for the option */

        field_opts_off(field[0], O_AUTOSKIP); /* Don't go to next field when thi
s */

        /* Field is filled up */
        set_field_back(field[1], A_UNDERLINE);
        field_opts_off(field[1], O_AUTOSKIP);

        /* Create the form and post it */
        my_form = new_form(field);
        post_form(my_form);
        refresh();

   mvprintw(4, 10, "Value 1:";
        mvprintw(6, 10, "Value 2:";
        refresh();

        /* Loop through to get user requests */
        while ((ch = getch()) != KEY_F(1)) {
                switch (ch) {
                case KEY_DOWN:
                        /* Go to next field */
                        form_driver(my_form, REQ_NEXT_FIELD);
                        /* Go to the end of the present buffer */
                        /* Leaves nicely at the last character */
                        form_driver(my_form, REQ_END_LINE);
                        break;
                case KEY_UP:
                        /* Go to previous field */
                        form_driver(my_form, REQ_PREV_FIELD);
                        form_driver(my_form, REQ_END_LINE);
                        break;
                default:
                        /* If this is a normal character, it gets */
      /* Printed */
                        form_driver(my_form, ch);
                        break;
                }
        }

        /* Un post form and free the memory */
        free_fieldtype(TYPE_HEX) ;
        unpost_form(my_form);
        free_form(my_form);
        free_field(field[0]);
        free_field(field[1]);

        endwin();
        return 0;
}
保存为form.c
cc form.c -o form -lform -lcurses
大家可以调试一下。

论坛徽章:
0
2 [报告]
发表于 2003-12-26 10:44 |只看该作者

《unix/linux下的curses库开发指南》一书有错误不少。

确实,里面是有不少错误

论坛徽章:
0
3 [报告]
发表于 2003-12-26 19:22 |只看该作者

《unix/linux下的curses库开发指南》一书有错误不少。

哪本书里没错误,别太在意了,只要能找出来并改正之,我们从中学到了东西不就行了.

论坛徽章:
0
4 [报告]
发表于 2003-12-26 19:37 |只看该作者

《unix/linux下的curses库开发指南》一书有错误不少。

[quote]原帖由 "field"]哪本书里没错误,别太在意了,只要能找出来并改正之,我们从中学到了东西不就行了.[/quote 发表:


说的太好了。
把错误的地方改正过来,这样印象更深刻。

论坛徽章:
0
5 [报告]
发表于 2003-12-27 12:47 |只看该作者

《unix/linux下的curses库开发指南》一书有错误不少。

呵呵,这方面的资料比较少,好多东西都是花时间研究出来的。希望大家多多包含,如果有错误,大家一起弄个勘误表,那就先谢谢先。:)

论坛徽章:
0
6 [报告]
发表于 2003-12-27 15:07 |只看该作者

《unix/linux下的curses库开发指南》一书有错误不少。

哪里有卖?我也想买一本.老兄给个邮购地址

论坛徽章:
0
7 [报告]
发表于 2003-12-27 17:34 |只看该作者

《unix/linux下的curses库开发指南》一书有错误不少。

我认为还是严谨一点的好,否则对那些初学者是误导。书不在于厚薄,是精华就好。《SCO OPEN SERVER 程序员技术精粹》这本书就很薄,但价格却160RMB。

论坛徽章:
0
8 [报告]
发表于 2003-12-27 18:04 |只看该作者

《unix/linux下的curses库开发指南》一书有错误不少。

清华大学出版社可以邮购。www.thdj.com。你上去看看。

论坛徽章:
0
9 [报告]
发表于 2003-12-29 14:08 |只看该作者

《unix/linux下的curses库开发指南》一书有错误不少。

写错了。邮购地址应该到www.thjd.com.cn上查找,计错了。不好意思。

论坛徽章:
0
10 [报告]
发表于 2004-03-25 10:18 |只看该作者

《unix/linux下的curses库开发指南》一书有错误不少。

是吗,我正看出这本书,其他地方还有错误吗
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP