c++定义包含一个字符串和一个值两个成员的类
时间: 2024-05-19 16:13:09 浏览: 76
class StringValue {
private:
std::string str;
int value;
public:
StringValue(std::string s, int v) {
str = s;
value = v;
}
std::string getString() {
return str;
}
int getValue() {
return value;
}
void setString(std::string s) {
str = s;
}
void setValue(int v) {
value = v;
}
};
相关问题
c++定义包括一个字符串和一个值两个成员的类
可以使用结构体或者类来定义,以下是一个使用类来定义的示例:
```c++
class MyClass {
public:
std::string str;
int value;
};
```
这个类包括一个字符串成员和一个整型成员,可以通过实例化对象来使用。
阅读全文