我试图使用std:getline()但是得到一个奇怪的运行时错误:
malloc: * error for object 0x10000a720: pointer being freed was not allocated
* set a breakpoint in malloc_error_break to debug
//main.cpp #include <iostream> #include <sstream> int main (int argc,char * const argv[]) { std::istringstream my_str("demo string with spaces"); std::string word; while (std::getline(my_str,word,' ')) { std::cout << word << std::endl; } return 0; }
在每个单词之前我得到这个错误.从评论看来,它似乎是一个OSX / XCode特定的错误.有什么提示吗?
更新:
该错误仅在调试模式下打印.如果我在释放模式下构建这个代码,一切都很好.
更新2:
关于这个问题的更多信息可以找到here.
解:
组
_GLIBCXX_FULLY_DYNAMIC_STRING=1
在您的预处理器宏中的目标信息构建选项卡.
系统信息:
OSX 10.6.2 | XCode 3.2 | g++ 4.2 | debug config for i386
解决方法
至少有一个人报告了苹果公司的4.2.1版本的问题,这似乎可能与您与_GLIBCXX_FULLY_DYNAMIC_STRING定义的标准库的不正确配置有关(可能与我在这里键入的任何内容)相关.
您可能会从包含此消息的新闻组线程中获得一点线索: