2011年1月12日
摘要: std::queue 是 stl 里面的容器适配器, 用来适配FIFO的数据结构。std::queue, 入队列的方法是: std::queue::push(), 出队列的方法是: std::queue::pop(), 为了异常安全, 这个方法返回void, 所以通常调用std::queue::fr... 阅读全文
posted @ 2011-01-12 10:16 honker 阅读(1452) 评论(0) 推荐(0) 编辑
摘要: 奇怪的错误,坑死个人啊!!当C++/CLI程序引用了native lib顺利编译之后,程序启动有可能出现以下错误(_CrtIsValidHeapPointer(pUserData)):这是ms的一个已知bug,原因:The reason why you get this error is that ... 阅读全文
posted @ 2011-01-12 09:55 honker 阅读(272) 评论(0) 推荐(0) 编辑