- 论坛徽章:
- 0
|
原帖由 namtso 于 2006-10-4 03:33 发表
xstr: str(const char *stra) {
len = strlen(stra);
_str = new char[len+1];
strncpy(_str, stra, MAXCHAR);
}
这里溢出了。。。。。
还是不行:
- #include <iostream>
- using namespace std;
- const int MAXCHAR = 80;
- class xstr {
- public:
- xstr();
- xstr(const char *);
- xstr(const xstr& xstrobj);
- xstr& operator = (const xstr& rhsobj);
- int len() const;
- ~xstr();
- friend ostream& operator << (ostream& outputStream, const xstr & str_a);
- friend istream& operator >> (istream& inputStream, xstr& str_a);
- friend bool operator < (const xstr& sa, const xstr& sb);
- private:
- char *_str;
- };
- xstr::xstr() {
- _str = NULL;
- };
- xstr::xstr(const char *stra) {
- _str = new char[strlen(stra)+1];
- strncpy(_str, stra, MAXCHAR);
- }
- xstr::xstr(const xstr &xstrobj) {
- _str = new char[xstrobj.len()+1];
- strncpy(_str, xstrobj._str, MAXCHAR);
- }
- xstr& xstr::operator = (const xstr & rhs) {
- if (len() < rhs.len()) {
- delete [] _str;
- _str = new char[rhs.len()+1];
- }
- strncpy(_str, rhs._str, MAXCHAR);
- return *this;
- }
- int xstr::len() const {
- return strlen(_str);
- }
- xstr::~xstr() {
- delete [] _str;
- }
- ostream& operator << (ostream &outputStream, const xstr & str_a) {
- outputStream << str_a._str;
- return outputStream;
- }
- 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;
- }
- bool operator < (const xstr& sa, const xstr& sb) {
- return (strncmp(sa._str, sb._str, MAXCHAR)<0);
- }
- int main() {
- xstr sa("abc");
- cin >> sa;
- exit(0);
- }
复制代码
一运行就crash:
- $ ./a.out
- *** glibc detected *** ./a.out: free(): invalid next size (fast): 0x09a15008 ***
- ======= Backtrace: =========
- /lib/libc.so.6[0x4488ca68]
- /lib/libc.so.6(__libc_free+0x78)[0x4488ff6f]
- /usr/lib/libstdc++.so.6(_ZdlPv+0x21)[0x44cc56c1]
- /usr/lib/libstdc++.so.6(_ZdaPv+0x1d)[0x44cc571d]
- ./a.out(__gxx_personality_v0+0x25a)[0x804894e]
- ./a.out[0x8048b68]
- /lib/libc.so.6(__libc_start_main+0xdc)[0x4483e4e4]
- ./a.out(__gxx_personality_v0+0x5d)[0x8048751]
- ======= Memory map: ========
- 08048000-08049000 r-xp 00000000 08:02 4120826 /home/xliu/courses/419/62/me/a.out
- 08049000-0804a000 rw-p 00001000 08:02 4120826 /home/xliu/courses/419/62/me/a.out
- 09a15000-09a36000 rw-p 09a15000 00:00 0 [heap]
- 4480b000-4480c000 r-xp 4480b000 00:00 0 [vdso]
- 4480c000-44825000 r-xp 00000000 08:02 4840232 /lib/ld-2.4.so
- 44825000-44826000 r--p 00018000 08:02 4840232 /lib/ld-2.4.so
- 44826000-44827000 rw-p 00019000 08:02 4840232 /lib/ld-2.4.so
- 44829000-44956000 r-xp 00000000 08:02 4840233 /lib/libc-2.4.so
- 44956000-44958000 r--p 0012d000 08:02 4840233 /lib/libc-2.4.so
- 44958000-44959000 rw-p 0012f000 08:02 4840233 /lib/libc-2.4.so
- 44959000-4495c000 rw-p 44959000 00:00 0
- 4495e000-44981000 r-xp 00000000 08:02 4842240 /lib/libm-2.4.so
- 44981000-44982000 r--p 00022000 08:02 4842240 /lib/libm-2.4.so
- 44982000-44983000 rw-p 00023000 08:02 4842240 /lib/libm-2.4.so
- 44bb8000-44bc3000 r-xp 00000000 08:02 4842242 /lib/libgcc_s-4.1.1-20060525.so.1
- 44bc3000-44bc4000 rw-p 0000a000 08:02 4842242 /lib/libgcc_s-4.1.1-20060525.so.1
- 44c10000-44cf2000 r-xp 00000000 08:02 1190795 /usr/lib/libstdc++.so.6.0.8
- 44cf2000-44cf6000 r--p 000e1000 08:02 1190795 /usr/lib/libstdc++.so.6.0.8
- 44cf6000-44cf7000 rw-p 000e5000 08:02 1190795 /usr/lib/libstdc++.so.6.0.8
- 44cf7000-44cfd000 rw-p 44cf7000 00:00 0
- b7e00000-b7e21000 rw-p b7e00000 00:00 0
- b7e21000-b7f00000 ---p b7e21000 00:00 0
- b7f19000-b7f1b000 rw-p b7f19000 00:00 0
- b7f35000-b7f36000 rw-p b7f35000 00:00 0
- bfe4e000-bfe63000 rw-p bfe4e000 00:00 0 [stack]
- Aborted
- $
复制代码
是delete这行出错:
- (gdb) where
- #0 0x4480b410 in __kernel_vsyscall ()
- #1 0x44850ee9 in raise () from /lib/libc.so.6
- #2 0x448524f1 in abort () from /lib/libc.so.6
- #3 0x4488553b in __libc_message () from /lib/libc.so.6
- #4 0x4488ca68 in _int_free () from /lib/libc.so.6
- #5 0x4488ff6f in free () from /lib/libc.so.6
- #6 0x44cc56c1 in operator delete () from /usr/lib/libstdc++.so.6
- #7 0x44cc571d in operator delete[] () from /usr/lib/libstdc++.so.6
- #8 0x0804894e in operator>> ()
- #9 0x08048b68 in main ()
- (gdb)
复制代码
[ 本帖最后由 catbert 于 2006-10-4 13:10 编辑 ] |
|