/* 创建一个字符串类String,并重载赋值运算符"="为其成员函数。 */ #include <iostream> #include <cstring> using namespace std; class String{ private: char *str; public: String(char *p=""){ //构造函数 str = new char[strlen(p)+1]; strcpy(str,p); } ~String(){ //析构函数 delete[] str; } void print(){ //显示函数 cout<<str<<endl; } String & operator=(String &s); //重载赋值运算符函数-----掌握 }; //在此定义成员函数String & String::operator=(String &s) //******************************************* String & String::operator=(String &s){ if(this==&s) return *this; delete str; str=new char[strlen(s.str)+1]; strcpy(str,s.str); return *this; } //=========================================== int main(){ String s1("This is a string!"), s2; s1.print(); cout<<"------------------"<<endl; s2=s1; s2.print(); cout<<"------------------"<<endl; String s3 = s1; //L1 s3.print(); //L2 }为什么出现指针悬挂
时间: 2023-11-29 10:04:07 浏览: 226
指针悬挂是因为在 `String` 类中重载了赋值运算符 `=`,但没有实现拷贝构造函数。在第 L1 行代码中,将 `s1` 赋值给 `s3` 时,实际上是调用了默认的拷贝构造函数,这个函数只是简单地进行指针的复制,导致 `s3.str` 和 `s1.str` 指向同一块内存。当 `s1` 和 `s3` 超出作用域时,它们的析构函数都会被调用,释放掉指向的内存,但是由于 `s1` 和 `s3` 指向同一块内存,导致这块内存被多次释放,从而出现指针悬挂问题。
为了解决这个问题,需要实现拷贝构造函数,将 `str` 指向的内存进行复制。具体实现如下:
```c++
String(const String& s) {
str = new char[strlen(s.str)+1];
strcpy(str, s.str);
}
```
这个拷贝构造函数将一个 `String` 类型的对象传入,创建了一个新的内存空间,并将 `str` 指向这个新的内存空间。这样,在使用 `s1` 初始化 `s3` 时,就会调用拷贝构造函数,而不会出现指针悬挂问题。
相关问题
帮我手动实现这些头文件里所有的stl容器#include <iostream> #include <memory> #include <stack> #include <fstream> #include <vector> #include <cmath> #include <iomanip> #include <exception> #include <climits> #include <array> #include <cstdint> #include <string>
好的,以下是手动实现这些头文件里所有的STL容器的代码:
```
// iostream
namespace mystd {
class ostream {
public:
ostream& operator<<(const char* str) {
// 实现输出字符串的逻辑
return *this;
}
// 其他重载运算符和成员函数
};
static ostream cout;
}
// memory
namespace mystd {
template<typename T>
class allocator {
public:
using value_type = T;
// 实现分配和释放内存的函数
};
}
// stack
namespace mystd {
template<typename T, typename Container = mystd::vector<T>>
class stack {
public:
using value_type = T;
using container_type = Container;
// 实现栈的各种函数
};
}
// fstream
namespace mystd {
class filebuf {
public:
// 实现文件缓冲区相关函数
};
class ifstream {
public:
ifstream(const char* filename) {
// 实现打开文件的逻辑
}
// 实现读取文件的逻辑
};
class ofstream {
public:
ofstream(const char* filename) {
// 实现打开文件的逻辑
}
// 实现写入文件的逻辑
};
}
// vector
namespace mystd {
template<typename T, typename Allocator = mystd::allocator<T>>
class vector {
public:
using value_type = T;
using allocator_type = Allocator;
// 实现vector的各种函数
};
}
// cmath
namespace mystd {
double pow(double base, double exponent) {
// 实现求幂函数
}
// 其他数学函数的实现
}
// iomanip
namespace mystd {
class setprecision {
public:
setprecision(int n) {
// 实现设置输出精度的逻辑
}
// 其他重载运算符和成员函数
};
}
// exception
namespace mystd {
class exception {
public:
virtual const char* what() const noexcept {
return "Unknown exception";
}
};
}
// climits
namespace mystd {
constexpr int INT_MAX = 2147483647;
// 其他常量的定义
}
// array
namespace mystd {
template<typename T, std::size_t N>
class array {
public:
using value_type = T;
// 实现数组的各种函数
};
}
// cstdint
namespace mystd {
using int8_t = signed char;
using int16_t = short int;
using int32_t = int;
using int64_t = long long int;
// 其他数据类型的定义
}
// string
namespace mystd {
class string {
public:
// 实现字符串的各种函数
};
}
```
以上代码只是简单实现了各个STL容器的基本功能,具体实现方式和函数可能会有所不同,仅供参考。
#include <iostream> #include <cstdio> #include <cstring> using namespace std; class STRING{ char* pstr; public: STRING(const char* s="");//已实现 ~STRING();//已实现 friend istream& operator>>(istream& in, STRING& s); friend ostream& operator<<(ostream& os, const STRING& s); }; int main() { STRING s; cin >> s; cout << s << endl; return 0; } /* 请在这里填写答案,,你只需要实现输入输出运算符(>>、<<)的重载即可 */
可以这样实现输入输出运算符的重载:
```c++
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
class STRING{
char* pstr;
public:
STRING(const char* s="");
~STRING();
friend istream& operator>>(istream& in, STRING& s);
friend ostream& operator<<(ostream& os, const STRING& s);
};
STRING::STRING(const char* s) {
pstr = new char[strlen(s)+1];
strcpy(pstr, s);
}
STRING::~STRING() {
delete []pstr;
}
istream& operator>>(istream& in, STRING& s) {
char buffer[1024];
in.getline(buffer, 1024);
s.pstr = new char[strlen(buffer)+1];
strcpy(s.pstr, buffer);
return in;
}
ostream& operator<<(ostream& os, const STRING& s) {
os << s.pstr;
return os;
}
int main() {
STRING s;
cin >> s;
cout << s << endl;
return 0;
}
```
在输入运算符中,我们使用`getline()`函数来读取输入的字符串,然后动态分配空间并将字符串拷贝到对象的数据成员中。
在输出运算符中,我们直接输出对象的数据成员。
注意,在使用动态分配空间时,需要在析构函数中释放空间。
阅读全文