c++如何获得或设置串的第i个字符值,用 get/set实现,给出代码
时间: 2024-02-12 17:09:04 浏览: 107
在 C++ 中,我们可以使用 `[]` 运算符来获取或设置字符串的第 `i` 个字符值。其中,`[]` 运算符的索引从 `0` 开始。
以下是使用 `get` 和 `set` 函数实现获取和设置字符串的第 `i` 个字符值的示例代码:
```cpp
#include <iostream>
#include <string>
using namespace std;
int main() {
string s = "Hello World";
// 获取字符串的第 i 个字符值
int i = 6;
char ch = s[i];
cout << "第 " << i << " 个字符值为:" << ch << endl;
// 设置字符串的第 i 个字符值
i = 0;
char newCh = 'h';
s[i] = newCh;
cout << "修改后的字符串为:" << s << endl;
return 0;
}
```
运行结果为:
```
第 6 个字符值为:W
修改后的字符串为:hello World
```
上述代码使用 `[]` 运算符获取或设置字符串的第 `i` 个字符值,并且也可以使用 `get` 和 `set` 函数来实现相同的功能。
相关问题
定义如下字符串类, 实现C++字符串的存储和操作。 class myString { public : ……. // 成员函数 private: char *pStr ; // 指向存储字符串的空间 new char[size+1] int size ; //包含字符的数目 } ; int main() { // 测试代码 myString s2, s1(“Hello”); cout<< s1.get(0) <<endl; //输出H s2.print(); //输出“空字符串” cout<< s2.getLen(); <<endl; // 输出0 s2.set (“Hello world”); s2.print(); //输出“Hello world” s1.toUpper(); s1.print(); //输出HELLO myStrin s3 =s2; cout<< s3.getLen(); <<endl; // 输出11 if( s2. strcompare(s3)) cout<<”字符串相同”; else cout<<”字符串不同”; return 0; }
我可以回答这个问题。这是一个关于定义字符串类并实现字符串操作的问题。在这个问题中,需要定义一个名为myString的类,其中包含一个指向存储字符串的空间的指针pStr和一个包含字符数目的整数size。该类还需要实现一些成员函数,例如get、print、getLen、set、toUpper和strcompare等。在主函数中,需要测试这些成员函数的功能,例如输出字符串中的某个字符、输出空字符串、输出字符串长度、设置字符串、将字符串转换为大写字母、比较两个字符串是否相同等。
定义一个字符串类 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;
}
```
阅读全文