免费注册 查看新帖 |

Chinaunix

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

请大家帮我看看这个程序的问题出在哪里,在下谢过了! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-10-04 13:28 |只看该作者 |倒序浏览
  1. #include <cstring>
  2. #include <iostream>
  3. using namespace std;

  4. const int MAXCHAR = 80;

  5. class xstr {
  6. public:
  7.   xstr();
  8.   xstr(const char *);
  9.   xstr(const xstr& xstrobj);
  10.   xstr& operator = (const xstr& rhsobj);
  11.   ~xstr();
  12.   friend ostream& operator << (ostream& outputStream, const xstr & str_a);
  13.   friend istream& operator >> (istream& inputStream, xstr& str_a);
  14.   friend bool operator < (const xstr& sa, const xstr& sb);
  15. private:
  16.   char *_str;
  17.   int len;
  18. };

  19. xstr::xstr() :len(0) {
  20.   _str = NULL;
  21. };

  22. xstr::xstr(const char *stra) {
  23.   len = strlen(stra);
  24.   _str = new char[len+1];
  25.   strncpy(_str, stra, MAXCHAR);
  26. }

  27. xstr::xstr(const xstr &xstrobj):len(xstrobj.len) {
  28.   _str = new char[len+1];
  29.   strncpy(_str, xstrobj._str, MAXCHAR);
  30. }

  31. xstr& xstr::operator = (const xstr & rhs) {
  32.   if (len < rhs.len) {
  33.     delete [] _str;
  34.     _str = new char[rhs.len+1];
  35.   }
  36.   strncpy(_str, rhs._str, MAXCHAR);
  37.   return *this;
  38. }

  39. xstr::~xstr() {
  40.   delete [] _str;
  41. }

  42. ostream& operator << (ostream &outputStream, const xstr & str_a) {
  43.   outputStream << str_a._str;
  44.   return outputStream;
  45. }

  46. istream& operator >> (istream &inputStream, xstr & str_a) {
  47.   char ch;
  48.   if (str_a.len < MAXCHAR) {
  49.     if (str_a._str != NULL)
  50.       delete [] str_a._str;
  51.     str_a._str = new char[MAXCHAR+1];
  52.   }
  53.   int ct =0;
  54.   inputStream >> ch;
  55.   while ((isalnum(ch))&&(ct<MAXCHAR)) {
  56.     str_a._str[ct++] = ch;
  57.     inputStream >> ch;
  58.   }
  59.   str_a._str[ct]='\0';
  60.   return inputStream;
  61. }

  62. bool operator < (const xstr& sa, const xstr& sb) {
  63.   return (strncmp(sa._str, sb._str, MAXCHAR)<0);
  64. }

  65. int main() {

  66.   xstr sa("abc");

  67.   cin >> sa;

  68.   exit(0);
  69. }
复制代码

论坛徽章:
0
2 [报告]
发表于 2006-10-04 16:33 |只看该作者
xstr:str(const char *stra) {
  len = strlen(stra);
  _str = new char[len+1];
  strncpy(_str, stra, MAXCHAR);
}

这里溢出了。。。。。

论坛徽章:
0
3 [报告]
发表于 2006-10-04 23:34 |只看该作者
xstr& xstr:perator = (const xstr & rhs) {
  if (len < rhs.len) {
    delete [] _str;
    _str = new char[rhs.len+1];
  }
  strncpy(_str, rhs._str, MAXCHAR);
  return *this;
}
istream& operator >> (istream &inputStream, xstr & str_a) {
  char ch;
  if (str_a.len < MAXCHAR) {
    if (str_a._str != NULL)
      delete [] str_a._str;
    str_a._str = new char[MAXCHAR+1];
  }
  int ct =0;
  inputStream >> ch;
  while ((isalnum(ch))&&(ct<MAXCHAR)) {
    str_a._str[ct++] = ch;
    inputStream >> ch;
  }
  str_a._str[ct]='\0';
  return inputStream;
}

没有修改len成员的值

论坛徽章:
0
4 [报告]
发表于 2006-10-05 01:12 |只看该作者
原帖由 tyc611 于 2006-10-4 10:34 发表


没有修改len成员的值


去掉了len,仍然在同样的地方crash。

论坛徽章:
0
5 [报告]
发表于 2006-10-05 01:21 |只看该作者
原帖由 namtso 于 2006-10-4 03:33 发表
xstr:str(const char *stra) {
  len = strlen(stra);
  _str = new char[len+1];
  strncpy(_str, stra, MAXCHAR);
}

这里溢出了。。。。。


还是不行:

  1. #include <iostream>

  2. using namespace std;

  3. const int MAXCHAR = 80;

  4. class xstr {
  5. public:
  6.   xstr();
  7.   xstr(const char *);
  8.   xstr(const xstr& xstrobj);
  9.   xstr& operator = (const xstr& rhsobj);
  10.   int len() const;
  11.   ~xstr();
  12.   friend ostream& operator << (ostream& outputStream, const xstr & str_a);
  13.   friend istream& operator >> (istream& inputStream, xstr& str_a);
  14.   friend bool operator < (const xstr& sa, const xstr& sb);
  15. private:
  16.   char *_str;
  17. };

  18. xstr::xstr() {
  19.   _str = NULL;
  20. };

  21. xstr::xstr(const char *stra) {
  22.   _str = new char[strlen(stra)+1];
  23.   strncpy(_str, stra, MAXCHAR);
  24. }

  25. xstr::xstr(const xstr &xstrobj) {
  26.   _str = new char[xstrobj.len()+1];
  27.   strncpy(_str, xstrobj._str, MAXCHAR);
  28. }

  29. xstr& xstr::operator = (const xstr & rhs) {
  30.   if (len() < rhs.len()) {
  31.     delete [] _str;
  32.     _str = new char[rhs.len()+1];
  33.   }
  34.   strncpy(_str, rhs._str, MAXCHAR);
  35.   return *this;
  36. }

  37. int xstr::len() const {
  38.   return strlen(_str);
  39. }

  40. xstr::~xstr() {
  41.   delete [] _str;
  42. }

  43. ostream& operator << (ostream &outputStream, const xstr & str_a) {
  44.   outputStream << str_a._str;
  45.   return outputStream;
  46. }

  47. istream& operator >> (istream &inputStream, xstr & str_a) {
  48.   char ch;
  49.   if (str_a.len() < MAXCHAR) {
  50.     if (str_a._str != NULL)
  51.       delete [] str_a._str;  //这里有问题,但是不知道为什么
  52.     str_a._str = new char[MAXCHAR+1];
  53.   }
  54.   int ct =0;
  55.   inputStream >> ch;
  56.   while ((isalnum(ch))&&(ct<MAXCHAR)) {
  57.     str_a._str[ct++] = ch;
  58.     inputStream >> ch;
  59.   }
  60.   str_a._str[ct]='\0';
  61.   return inputStream;
  62. }

  63. bool operator < (const xstr& sa, const xstr& sb) {
  64.   return (strncmp(sa._str, sb._str, MAXCHAR)<0);
  65. }

  66. int main() {

  67.   xstr sa("abc");

  68.   cin >> sa;

  69.   exit(0);
  70. }
复制代码


一运行就crash:

  1. $ ./a.out
  2. *** glibc detected *** ./a.out: free(): invalid next size (fast): 0x09a15008 ***
  3. ======= Backtrace: =========
  4. /lib/libc.so.6[0x4488ca68]
  5. /lib/libc.so.6(__libc_free+0x78)[0x4488ff6f]
  6. /usr/lib/libstdc++.so.6(_ZdlPv+0x21)[0x44cc56c1]
  7. /usr/lib/libstdc++.so.6(_ZdaPv+0x1d)[0x44cc571d]
  8. ./a.out(__gxx_personality_v0+0x25a)[0x804894e]
  9. ./a.out[0x8048b68]
  10. /lib/libc.so.6(__libc_start_main+0xdc)[0x4483e4e4]
  11. ./a.out(__gxx_personality_v0+0x5d)[0x8048751]
  12. ======= Memory map: ========
  13. 08048000-08049000 r-xp 00000000 08:02 4120826    /home/xliu/courses/419/62/me/a.out
  14. 08049000-0804a000 rw-p 00001000 08:02 4120826    /home/xliu/courses/419/62/me/a.out
  15. 09a15000-09a36000 rw-p 09a15000 00:00 0          [heap]
  16. 4480b000-4480c000 r-xp 4480b000 00:00 0          [vdso]
  17. 4480c000-44825000 r-xp 00000000 08:02 4840232    /lib/ld-2.4.so
  18. 44825000-44826000 r--p 00018000 08:02 4840232    /lib/ld-2.4.so
  19. 44826000-44827000 rw-p 00019000 08:02 4840232    /lib/ld-2.4.so
  20. 44829000-44956000 r-xp 00000000 08:02 4840233    /lib/libc-2.4.so
  21. 44956000-44958000 r--p 0012d000 08:02 4840233    /lib/libc-2.4.so
  22. 44958000-44959000 rw-p 0012f000 08:02 4840233    /lib/libc-2.4.so
  23. 44959000-4495c000 rw-p 44959000 00:00 0
  24. 4495e000-44981000 r-xp 00000000 08:02 4842240    /lib/libm-2.4.so
  25. 44981000-44982000 r--p 00022000 08:02 4842240    /lib/libm-2.4.so
  26. 44982000-44983000 rw-p 00023000 08:02 4842240    /lib/libm-2.4.so
  27. 44bb8000-44bc3000 r-xp 00000000 08:02 4842242    /lib/libgcc_s-4.1.1-20060525.so.1
  28. 44bc3000-44bc4000 rw-p 0000a000 08:02 4842242    /lib/libgcc_s-4.1.1-20060525.so.1
  29. 44c10000-44cf2000 r-xp 00000000 08:02 1190795    /usr/lib/libstdc++.so.6.0.8
  30. 44cf2000-44cf6000 r--p 000e1000 08:02 1190795    /usr/lib/libstdc++.so.6.0.8
  31. 44cf6000-44cf7000 rw-p 000e5000 08:02 1190795    /usr/lib/libstdc++.so.6.0.8
  32. 44cf7000-44cfd000 rw-p 44cf7000 00:00 0
  33. b7e00000-b7e21000 rw-p b7e00000 00:00 0
  34. b7e21000-b7f00000 ---p b7e21000 00:00 0
  35. b7f19000-b7f1b000 rw-p b7f19000 00:00 0
  36. b7f35000-b7f36000 rw-p b7f35000 00:00 0
  37. bfe4e000-bfe63000 rw-p bfe4e000 00:00 0          [stack]
  38. Aborted
  39. $
复制代码


是delete这行出错:

  1. (gdb) where
  2. #0  0x4480b410 in __kernel_vsyscall ()
  3. #1  0x44850ee9 in raise () from /lib/libc.so.6
  4. #2  0x448524f1 in abort () from /lib/libc.so.6
  5. #3  0x4488553b in __libc_message () from /lib/libc.so.6
  6. #4  0x4488ca68 in _int_free () from /lib/libc.so.6
  7. #5  0x4488ff6f in free () from /lib/libc.so.6
  8. #6  0x44cc56c1 in operator delete () from /usr/lib/libstdc++.so.6
  9. #7  0x44cc571d in operator delete[] () from /usr/lib/libstdc++.so.6
  10. #8  0x0804894e in operator>> ()
  11. #9  0x08048b68 in main ()
  12. (gdb)   
复制代码

[ 本帖最后由 catbert 于 2006-10-4 13:10 编辑 ]

论坛徽章:
0
6 [报告]
发表于 2006-10-05 07:18 |只看该作者
都跟你说了,是 strncpy(_str, stra, MAXCHAR);的时候溢出了。。。。。。
回去查一下strncpy手册就明白了。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP