c_cpp c ++中允许字符串扩展的字符串类
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp c ++中允许字符串扩展的字符串类相关的知识,希望对你有一定的参考价值。
#include <iostream>
using namespace std;
//C++ program that manipulates a string class and gets char
class StringObj {
public:
string message;
StringObj(string input) {
message = input;
}
void printstring(){
cout << message << endl;
}
char get(int key) {
return message[key];
}
void extendstr(string other) {
message += other;
}
};
int main() {
StringObj lst("hello there");
lst.extendstr(" joe");
lst.printstring();
return 0;
}
以上是关于c_cpp c ++中允许字符串扩展的字符串类的主要内容,如果未能解决你的问题,请参考以下文章
文件后缀名
c语言函数返回字符串时必须要用指针吗?如果返回结构体呢?函数在返回那些类型值时必须要用指针?
如何在我的字符串中允许特定值[重复]
GET 参数中允许的字符
php数组键中允许的字符?
Python 函数名中允许的字符