c++ c++-faq copy-constructor assignment-operator rule-of-three
为什么这段代码会导致Debug Assertion失败?
   std::string query;
   int ClientID = 666;
   query = "select logged from login where id = ";
   query.append((char *)ClientID);
我的问题是我将如何转换类似的内容:
    int i = 0x11111111;
字符指针?我尝试使用itoa()函数,但它给了我一个浮点异常。