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];
}
};
int main() {
StringObj lst("hello there");
cout << lst.get(1) << endl;
return 0;
}
以上是关于c_cpp c ++中的字符串类的主要内容,如果未能解决你的问题,请参考以下文章
c_cpp C ++中的int list类
c_cpp C ++中的通用容器可迭代数组类
c_cpp C ++中一个类中的多个大小的数组
c_cpp C ++中的Fraction类定义。虽然它可能有用,但是,主要是我想知道你对代码的看法
另一个类中的 C++\Qt 类对象
c类ip CIDR