可能重复:
如何在一行上连接多个 C++ 字符串?
根据this C++ std::string 使用operator+ 连接。那为什么这段代码
using namespace std;
string sql = "create table m_table(" +
"path TEXT," +
"quality REAL," +
"found INTEGER);";
导致这个错误?
'const char [22]' 和 'const char [17]' 类型的无效操作数到二进制 'operator+'