优化下面一段代码String String::operator-(const String& s) { String temp; int len1 = strlen(str); int len2 = strlen(s.str); temp.str = new char[len1 + len2 + 1]; int j = 0; for (int i = 0; i < len1;i++) { if (str[i] != ' ') { temp.str[j++] = s.str[i]; } } temp.str[j] = '\0'; return temp;
时间: 2023-07-14 07:11:51 浏览: 92
下面是优化后的代码:
```
String String::operator-(const String& s) {
int len1 = strlen(str);
int len2 = strlen(s.str);
char* temp_str = new char[len1 + len2 + 1];
int j = 0;
for (int i = 0; i < len1; ++i) {
if (str[i] != ' ') {
temp_str[j++] = str[i];
}
}
temp_str[j] = '\0';
String temp(temp_str);
delete[] temp_str;
return temp;
}
```
主要做了以下几点优化:
1. 不需要每次调用 operator- 时都动态分配内存,可以在构造函数中动态分配内存,并在析构函数中释放内存;
2. 在 operator- 中创建一个临时的字符串对象 temp,并将 temp.str 指向一个新分配的字符数组,最后返回该临时对象,这样可以避免内存泄漏;
3. 将 s.str 改为 str,因为 operator- 是在当前对象中定义的,所以可以直接使用当前对象的成员变量。
相关问题
解释这一段代码:String String::operator-(const String& s) { String temp; int len1 = strlen(str); int len2 = strlen(s.str); temp.str = new char[len1 + len2 + 1]; int j = 0; for (int i = 0; i < len1;i++) { if (str[i] != ' ') { temp.str[j++] = s.str[i]; } } temp.str[j] = '\0'; return temp;
这段代码实现了一个重载运算符 "-",用于从一个字符串对象中删除另一个字符串对象中出现的所有空格字符,并返回结果字符串对象。下面是代码的具体解释:
```String String::operator-(const String& s) { // 重载运算符 "-"
String temp; // 创建一个临时的字符串对象
int len1 = strlen(str); // 获取当前对象的字符串长度
int len2 = strlen(s.str); // 获取被减对象的字符串长度
temp.str = new char[len1 + len2 + 1]; // 为临时字符串对象分配内存空间
int j = 0; // 用于记录临时字符串对象当前插入的位置
for (int i = 0; i < len1; i++) // 遍历当前对象的所有字符
{
if (str[i] != ' ') // 如果当前字符不是空格字符
{
temp.str[j++] = s.str[i]; // 将被减对象中相同位置的字符加入到临时对象中
}
}
temp.str[j] = '\0'; // 为临时字符串对象加上结束符
return temp; // 返回临时字符串对象
}```
需要注意的是,代码中没有对内存空间进行释放,这可能会导致内存泄漏的问题。在实际使用中,应该在合适的时候释放内存空间。
定义一个字符串类 String 数据成员(访问权限定义为protected): 指向存放字符串内容的字符指针(char *str) 成员函数(访问权限定义为public): 默认构造函数:初始化成一个空串 String( ); 带参数的构造函数:根据参数内容初始化字符串 String(const char *content); 拷贝构造函数:初始化字符串 String(const String &cstr); 析构函数:释放堆空间 ~String( ); 设置字符串内容 void set(const char *content); 获取字符串内容(定义为const成员函数)void get(char *&dest) const; 获取字符串长度(定义为const成员函数)int length() const; 打印字符串内容(定义为const成员函数)void print() const; 重载赋值运算符= String& operator=(const String &cstr); 重载下标运算符[ ],实现获取字符串中某个指定位置的字符 char& operator[](int index); 重载加法运算符+,实现两个字符串的拼接 String operator+(const String &cstr); 重载加法运算符+,实现字符串和字符指针的拼接 String operator+(const char *cstr); 重载加法运算符+,实现字符串和单个字符的拼接 String operator+(char ch); 重载负号运算符-,实现字符串中字符的逆序排列 String operator-( ); 重载自增运算符++,实现将字符串中的小写字母转换成大写字母 String& operator++(); // 前置自增 String operator++(int); // 后置自增 重载自减运算符--,实现将字符串中的大写字母转换成小写字母 String& operator--(); // 前置自减 String operator--(int); // 后置自减 要求:将类的定义与类成员函数的实现分开。
String.h 文件:
```c++
#ifndef STRING_H
#define STRING_H
class String {
protected:
char *str; // 指向存放字符串内容的字符指针
public:
String(); // 默认构造函数
String(const char *content); // 带参数的构造函数
String(const String &cstr); // 拷贝构造函数
~String(); // 析构函数
void set(const char *content); // 设置字符串内容
void get(char *&dest) const; // 获取字符串内容
int length() const; // 获取字符串长度
void print() const; // 打印字符串内容
String& operator=(const String &cstr); // 重载赋值运算符
char& operator[](int index); // 重载下标运算符
String operator+(const String &cstr); // 重载加法运算符
String operator+(const char *cstr); // 重载加法运算符
String operator+(char ch); // 重载加法运算符
String operator-( ); // 重载负号运算符
String& operator++(); // 重载自增运算符(前置)
String operator++(int); // 重载自增运算符(后置)
String& operator--(); // 重载自减运算符(前置)
String operator--(int); // 重载自减运算符(后置)
};
#endif
```
String.cpp 文件:
```c++
#include <iostream>
#include <cstring>
#include "String.h"
using namespace std;
String::String() {
str = new char[1];
str[0] = '\0';
}
String::String(const char *content) {
if (content == nullptr) {
str = new char[1];
str[0] = '\0';
} else {
int len = strlen(content);
str = new char[len + 1];
strcpy(str, content);
}
}
String::String(const String &cstr) {
int len = strlen(cstr.str);
str = new char[len + 1];
strcpy(str, cstr.str);
}
String::~String() {
delete[] str;
}
void String::set(const char *content) {
if (content == nullptr) {
delete[] str;
str = new char[1];
str[0] = '\0';
} else {
int len = strlen(content);
if (len != strlen(str)) {
delete[] str;
str = new char[len + 1];
}
strcpy(str, content);
}
}
void String::get(char *&dest) const {
int len = strlen(str);
dest = new char[len + 1];
strcpy(dest, str);
}
int String::length() const {
return strlen(str);
}
void String::print() const {
cout << str << endl;
}
String& String::operator=(const String &cstr) {
if (this != &cstr) {
delete[] str;
int len = strlen(cstr.str);
str = new char[len + 1];
strcpy(str, cstr.str);
}
return *this;
}
char& String::operator[](int index) {
return str[index];
}
String String::operator+(const String &cstr) {
int len1 = strlen(str);
int len2 = strlen(cstr.str);
char *new_str = new char[len1 + len2 + 1];
strcpy(new_str, str);
strcat(new_str, cstr.str);
String result(new_str);
delete[] new_str;
return result;
}
String String::operator+(const char *cstr) {
String temp(cstr);
return (*this + temp);
}
String String::operator+(char ch) {
char cstr[2] = {ch, '\0'};
String temp(cstr);
return (*this + temp);
}
String String::operator-( ) {
int len = strlen(str);
char *new_str = new char[len + 1];
for (int i = 0; i < len; i++) {
new_str[i] = str[len - i - 1];
}
new_str[len] = '\0';
String result(new_str);
delete[] new_str;
return result;
}
String& String::operator++() {
int len = strlen(str);
for (int i = 0; i < len; i++) {
if (str[i] >= 'a' && str[i] <= 'z') {
str[i] += 'A' - 'a';
}
}
return *this;
}
String String::operator++(int) {
String temp(*this);
++(*this);
return temp;
}
String& String::operator--() {
int len = strlen(str);
for (int i = 0; i < len; i++) {
if (str[i] >= 'A' && str[i] <= 'Z') {
str[i] += 'a' - 'A';
}
}
return *this;
}
String String::operator--(int) {
String temp(*this);
--(*this);
return temp;
}
```
阅读全文