免费注册 查看新帖 |

Chinaunix

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

<APUE>第五章中写到FILE *fp;fp->_flag相关问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-16 23:47 |只看该作者 |倒序浏览
steves事先写到FILE中_flag和_bufsiz是作者所使用的系统定义的。
在代码5-3实例中也用到这两个成员(暂且说是成员吧,不知道FILE是否是结构体.. )
我使用的是fedora14,有下面几个问题
1.FILE到底该怎么理解(如里面包含了哪些信息等等),百度了一下说是类型名(感觉说了等于没说 ==!),具体要看系统的实现
2.要完成该代码的编译运行,Fedora14中的FILE该怎么取出和作者相同效果的“成员”呢?
代码如下
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. void pr_stdio(const char *, FILE *);

  4. int main(void)
  5. {
  6.     FILE *fp;

  7.     fpuc("enter any character\n", stdout);
  8.     if (getchar() == EOF)
  9.         printf("getchar error\n");
  10.     fputs("one line to standard error\n", stderr);

  11.     pr_stdio("stdin", stdin);
  12.     pr_stdio("stdout", stdout);
  13.     pr_stdio("stderr", stderr);

  14.     if ( (fp = fopen("/etc/motd", "r")) == NULL)
  15.         printf("fopen error\n");
  16.     if (getc(fp) == EOF)
  17.         printf("getc error\n");
  18.     pr_stdio("/etc/motd", fp);
  19.     exit(0);
  20. }

  21. void pr_stdio(const char *name, FILE *fp)
  22. {
  23.     printf(" stream = %s, ", name);

  24.     if ( fp->_flag & _IONBF)    printf("unbuffered");
  25.     else if ( fp->_flag & _IOLBF) printf
  26. ("line buffered");
  27.     else printf("fully buffered");
  28.     printf(", buffer size = %d\n", fp->_bufsiz);
  29. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2011-12-16 23:48 |只看该作者
大家不要喷我 在错误处理中使用printf哈~~O(∩_∩)O~

论坛徽章:
0
3 [报告]
发表于 2011-12-18 22:03 |只看该作者
这是我电脑上FILE的结构体:

  1. struct _IO_FILE;
  2. typedef struct _IO_FILE FILE;

  3. struct _IO_FILE {
  4.    int _flags;       /* High-order word is _IO_MAGIC; rest is flags. */
  5. #define _IO_file_flags _flags

  6.    /* The following pointers correspond to the C++ streambuf protocol. */
  7.    /* Note:  Tk uses the _IO_read_ptr and _IO_read_end fields directly. */
  8.    char* _IO_read_ptr;   /* Current read pointer */
  9.    char* _IO_read_end;   /* End of get area. */
  10.    char* _IO_read_base;  /* Start of putback+get area. */
  11.    char* _IO_write_base; /* Start of put area. */
  12.    char* _IO_write_ptr;  /* Current put pointer. */
  13.    char* _IO_write_end;  /* End of put area. */
  14.    char* _IO_buf_base;   /* Start of reserve area. */
  15.    char* _IO_buf_end;    /* End of reserve area. */
  16.    /* The following fields are used to support backing up and undo. */
  17.    char *_IO_save_base; /* Pointer to start of non-current get area. */
  18.    char *_IO_backup_base;  /* Pointer to first valid character of backup area */
  19.    char *_IO_save_end; /* Pointer to end of non-current get area. */

  20.    struct _IO_marker *_markers;
  21.                                                                                                                                                          
  22.    struct _IO_FILE *_chain;

  23.    int _fileno;
  24. #if 0
  25.    int _blksize;
  26. #else
  27.    int _flags2;
  28. #endif
  29.    _IO_off_t _old_offset; /* This used to be _offset but it's too small.  */

  30. #define __HAVE_COLUMN /* temporary */
  31.    /* 1+column number of pbase(); 0 is unknown. */
  32.    unsigned short _cur_column;
  33.    signed char _vtable_offset;
  34.    char _shortbuf[1];

  35.    /*  char* _save_gptr;  char* _save_egptr; */

  36.    _IO_lock_t *_lock;
  37. #ifdef _IO_USE_OLD_IO_FILE
  38. };
复制代码
结构体详细的成员意思要去看文档了。另外你的pr_stdio里面调用printf会有什么问题吗?

论坛徽章:
0
4 [报告]
发表于 2011-12-20 18:40 |只看该作者
本帖最后由 tutu_magi 于 2011-12-20 18:41 编辑

我怎么看我自己系统的FILE结构体定义呢?在哪个文件啊...
我在pr_stdio里面用printf暂时没有什么问题额...小菜问题求解答..

论坛徽章:
0
5 [报告]
发表于 2011-12-21 00:11 |只看该作者
我在 /usr/include/libio.h 里面找到了一个,就贴出来了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP