我有以下C ++类:
class Eamorr {
public:
redispp::Connection conn;
Eamorr(string& home, string& uuid)
{
//redispp::Connection conn("127.0.0.1", "6379", "password", false); //this works, but is out of scope in put()...
conn=new redispp::Connection("127.0.0.1", "6379", "password", false); //this doesn't work ;(
}
put(){
conn.set("hello", "world");
}
...
}
如您所见,我希望conn
在构造函数中初始化,并在put()
方法中可用。
我该怎么做?
非常感谢,
答案 0 :(得分:8)
这是member-initialization-list的用途:
Eamorr(string& home, string& uuid)
: conn("127.0.0.1", "6379", "password", false)
{
//constructor body!
}
:
之后的语法(包括此语法)构成了member-initiazation-list。您可以在此处初始化成员,每个成员用逗号分隔。
这是一个详细的例子:
struct A
{
int n;
std::string s;
B *pB;
A() : n(100), s("some string"), pB(new B(n, s))
{
//ctor-body!
}
};
有关更多信息,请参阅以下内容:
答案 1 :(得分:0)
只是为了扩大Nawaz的答案。
实际上错误的是你使用new作为一个不是指针的变量。因为变量conn不是你可以写的指针:
Eamorr(string& home, string& uuid)
{
conn = redispp::Connection("127.0.0.1", "6379", "password", false);
}