免费注册 查看新帖 |

Chinaunix

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

(null) (nil)代表什么意思 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-01-04 18:26 |只看该作者 |倒序浏览
今天用glob写一个程序,但是结果让我不理解

for(i=0;i<result.gl_pathc+PRESERVE+1;i++){
        printf("%s:%p  ",result.gl_pathv,result.gl_pathv);
    }

    /* well,here has some strange things,as the documentation says
       the last pointer should be null,but here goes wrong
       and the result.gl_pathv[result_gl_pathc+PRESERVE+1]==(null) and address is (nil)
       what does this mean */
    assert(!(result.gl_pathv[result.gl_pathc+PRESERVE+1]));

按照man上的说发,最后一个指针应该是NULL,但是我用printf打印出来,最后一个指针是
(null)nil),而assert(!(result.gl_pathv[result.gl_pathc+PRESERVE+1]));为假??
究竟(null)和(nil)分别代表什么意思呢?


这个是整个程序
/* -*- linux-c -*- */
/* this file is to using the function of 'glob'
   this function is useful when u want to use the wildcard to match the files */
#include <stdio.h>
#include <errno.h>
#include <glob.h>
#include <assert.h>

#define NELEMS(x) ((sizeof(x))/(sizeof((x)[0])))

static char *progname;
static char *file_pattern[]={
    "./r*.c",
    "./m*.pl",
    "./h*.c"
};

int main(int argc,char **argv)
{
    int i;
    int flags=0;
    glob_t result;
    int ret;

    progname=argv[0];
#define PRESERVE 2
    /* preserve 2 slots at the fiest */
    result.gl_offs=PRESERVE;

    flags=GLOB_DOOFFS;/* the flag of slot */
    for(i=0;i<NELEMS(file_pattern);i++){
        ret=glob(file_pattern,flags,NULL,&result);
        if(ret){
            fprintf(stderr,"%s:problems with %s(%s),stopping early\n",
                progname,file_pattern,
                ((ret==GLOB_ABORTED)?"filesystem problem":
                (ret==GLOB_NOMATCH)?"no match of pattern":
                (ret==GLOB_NOSPACE)?"no dynamic memory":
                "unknown problem");
            break;
            }
        flags=GLOB_DOOFFS|GLOB_APPEND;/* append others matches at the last */
        }
       /* we can add 2 items in the slots */
    result.gl_pathv[0]="ls";
    result.gl_pathv[1]="-l";
    for(i=0;i<result.gl_pathc+PRESERVE+1;i++){
        printf("%s:%p  ",result.gl_pathv,result.gl_pathv);
    }
    assert(!(result.gl_pathv[result.gl_pathc+PRESERVE+1]));
    putchar('\n');
    globfree(&result);
    return 0;
}

论坛徽章:
0
2 [报告]
发表于 2008-01-04 20:19 |只看该作者
这个串就代表NULL

论坛徽章:
0
3 [报告]
发表于 2008-01-04 22:01 |只看该作者
>> 究竟(null)和(nil)分别代表什么意思呢?

这说明在此系统上,输出为(null)则表示你在通过一个空指针(Null Pointer)输出字符串,输出是(nil)的话表明打印的是一个空指针值。

论坛徽章:
0
4 [报告]
发表于 2008-01-06 00:01 |只看该作者
assert(!(result.gl_pathv[result.gl_pathc+PRESERVE+1]));

但是这个断言为假?这个怎么办???这个怎么解释?
如果按照man中的说法,这个断言应该为真,

如果这个断言我写错了,希望各位高人能写出一个正确的断言

论坛徽章:
0
5 [报告]
发表于 2008-01-06 11:17 |只看该作者
原帖由 dirtysalt 于 2008-1-6 00:01 发表
assert(!(result.gl_pathv[result.gl_pathc+PRESERVE+1]));

但是这个断言为假?这个怎么办???这个怎么解释?
如果按照man中的说法,这个断言应该为真,

如果这个断言我写错了,希望各位高人能写出一个 ...


从你的 for(i=0;i<result.gl_pathc+PRESERVE+1;i++) 这个语句来看,你的 result.gl_pathv 的最后一个元素的下标是 result.gl_pathc+PRESERVE。因此,似乎 assert 中的数组使用越界了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP