免费注册 查看新帖 |

Chinaunix

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

这里为何传指针不可以呢 ? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-11-15 11:03 |只看该作者 |倒序浏览
代码如下 :


  1. #include<stdlib.h>
  2. #include<stdio.h>
  3. #include<time.h>
  4. #include<sys/time.h>
  5. #include<unistd.h>

  6. int lib_sec2tm(long sec , struct tm * tm) ;  //
  7. int get_sec2tm(long isec) ;


  8. int main(int argc , char * argv[])
  9. {
  10.         get_sec2tm(atol(argv[1])) ; // 1131816244
  11.         return 0 ;
  12. }

  13. int lib_sec2tm(long sec , struct tm * m)  //
  14. {
  15.           time_t timep ;
  16.     timep = (time_t)sec ;        
  17.     m = localtime(&timep);                      //
  18.     return 0 ;
  19. }

  20. int get_sec2tm(long isec)
  21. {
  22.                 struct tm * t = NULL ;
  23.                 char * str_time = NULL ;

  24.                 t = (struct tm *)malloc(sizeof(struct tm)) ;
  25.                 memset(t , 0 , sizeof(struct tm)) ;
  26.                 str_time = (char *)malloc(sizeof(char) * 100 + 1) ;
  27.                 memset(str_time , 0 , 100) ;

  28.                 lib_sec2tm(isec , t) ;                  //
  29.                 strftime(str_time,100,"%Y-%m-%d %H:%M:%S , %sn",t);   
  30.                 printf("Sec is %ld , convert to time %sn", isec , str_time);         // 打印出 1900-11-00 ...       
  31.                                                                                                                                                                                                                                                                                 // 应该是 2005-11-13 ...               
  32.                 free(t) ;
  33.                 free(str_time) ;
  34.                
  35. }

复制代码
                                             
改成下面的是可以打印出来,但 free(t) 提示 : glibc detected , free() : invalid pointer : ...


  1. int lib_sec2tm(long sec , struct tm ** tm) ;

  2. int lib_sec2tm(long sec , struct tm ** m)
  3. {
  4.           time_t timep ;
  5.     timep = (time_t)sec ;        
  6.     *m = localtime(&timep);       
  7.     return 0 ;
  8. }

  9. int get_sec2tm(long isec)
  10. {
  11.                 struct tm * t = NULL ;
  12.                 char * str_time = NULL ;

  13.                 t = (struct tm *)malloc(sizeof(struct tm)) ;
  14.                 memset(t , 0 , sizeof(struct tm)) ;
  15.                 str_time = (char *)malloc(sizeof(char) * 100 + 1) ;
  16.                 memset(str_time , 0 , 100) ;

  17.                 lib_sec2tm(isec , &t) ;
  18.                 strftime(str_time,100,"%Y-%m-%d %H:%M:%S , %sn",t);   
  19.                 printf("Sec is %ld , convert to time %sn", isec , str_time);                

  20.                 free(t) ;  // 提示 : glibc detected , free() : invalid pointer : ...  , 注释掉正确
  21.                 free(str_time) ;
  22.                
  23. }
  24.                                              

复制代码
                              
               
问题 :

  1、 为何要传指针的指针 ?
  2、 malloc 和  free 要配对的,为何这里出错 ? 是 strftime() 的原因吗 ?
  
谢谢

论坛徽章:
0
2 [报告]
发表于 2005-11-15 13:36 |只看该作者
*m = localtime(&timep);        
把malloc分配的值替换了
最后free的是localtime返回的指针,肯定不对了

论坛徽章:
0
3 [报告]
发表于 2005-11-15 14:16 |只看该作者
localtime函数返回一临时buffer,你想用指针m保存这个动态分配的内存,自然就不行了,得用指针的指针。
至于free,struct tm中有n个int型成员,成员没释放,直接释放struct tm自然就不行了。

论坛徽章:
0
4 [报告]
发表于 2005-11-15 14:17 |只看该作者
你说的对,这个我明白了,*m = localtime(&timep);  这儿应该是一个栈地址吧,不过第一个问题还是没有弄明白,为何传指针不能改变 t , 而一定要传 指针的指针呢 ?

论坛徽章:
0
5 [报告]
发表于 2005-11-15 14:18 |只看该作者
原帖由 oyjcq 于 2005-11-15 13:36 发表
*m = localtime(&timep);        
把malloc分配的值替换了
最后free的是localtime返回的指针,肯定不对了


你说的对,这个我明白了,*m = localtime(&timep);  这儿应该是一个栈地址吧,不过第一个问题还是没有弄明白,为何传指针不能改变 t , 而一定要传 指针的指针呢 ?

论坛徽章:
0
6 [报告]
发表于 2005-11-15 15:14 |只看该作者
原帖由 studentstep 于 2005-11-15 14:18 发表


你说的对,这个我明白了,*m = localtime(&timep);  这儿应该是一个栈地址吧,不过第一个问题还是没有弄明白,为何传指针不能改变 t , 而一定要传 指针的指针呢 ?

free需要的是指针,当然要传递指针的指针了

论坛徽章:
0
7 [报告]
发表于 2005-11-16 08:25 |只看该作者
原帖由 torrent 于 2005-11-15 15:14 发表

free需要的是指针,当然要传递指针的指针了



我是指修改 一个 struct tm  ,为何要传 struct tm 的指针的指针呢 ?

论坛徽章:
0
8 [报告]
发表于 2005-11-16 09:09 |只看该作者
原帖由 studentstep 于 2005-11-16 08:25 发表



我是指修改 一个 struct tm  ,为何要传 struct tm 的指针的指针呢 ?



因为c是传值的,传给函数的只是一个值的拷贝,所以改了也不会影响原来的值

论坛徽章:
0
9 [报告]
发表于 2005-11-16 10:14 |只看该作者
传指针是可以改变结构的,不需要传指针的指针,如如下代码:


  1. #include<stdio.h>
  2. #include<stdlib.h>

  3. struct STRU
  4. {
  5.                 int stru_i_count ;
  6.                 char stru_c ;
  7. } ;


  8. void change_struct(struct STRU * stru , char c , int count)
  9. {
  10.                 stru->stru_c = c ;
  11.                 stru->stru_i_count = count ;
  12. }

  13. int main(int argc , char * argv[])
  14. {

  15.                 struct STRU * st1 ;
  16.                 st1 = (struct STRU *)malloc(sizeof(struct STRU) * 1) ;
  17.                 memset(st1 , 0 , sizeof(struct STRU)) ;

  18.                 change_struct(st1 , 'A' , 100) ;

  19.                 printf("%c , %dn" , st1->stru_c , st1->stru_i_count) ;
  20.                 free(st1) ;
  21.                
  22. }

复制代码


我自己觉得问题在这句:  m = localtime(&timep);  这里改变了 m 原来的地址是不是 ? 为何不是将  localtime(&timep);  的结果填充到 m 中呢 ? 这里为何要传指针的指针真是不明白

论坛徽章:
0
10 [报告]
发表于 2005-11-16 11:05 |只看该作者
原帖由 studentstep 于 2005-11-16 10:14 发表
传指针是可以改变结构的,不需要传指针的指针,如如下代码:

[code]
#include<stdio.h>
#include<stdlib.h>

struct STRU
{
                int stru_i_count ;
                char stru_c ;
} ;


void change_ ...


帮你顶下
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP