这个应该是引用类型赋值给非引用类型吧,在initConnString函数那
Bar::printConnString中,打印这个啥意思?打印函数地址?
cout << Foo::getConnString << endl;
如果打印getConnString返回的内容,正确应该是
cout << Foo::getConnString() << endl;
类的静态成员变量初始化挪到cpp中。
string foo::str = "";
参考:https://blog.csdn.net/Marine_snow/article/details/103319784