C/C++教程

terminate called after throwing an instance of 'std::cad_alloc' what():std::bad_alloc

本文主要是介绍terminate called after throwing an instance of 'std::cad_alloc' what():std::bad_alloc,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

内存不够:

1,确认系统已占用内存是否正常,排除数据量过大导致的问题,此时系统内存不足导致 std::bad_alloc

内存剩余:

1,确认接口调用时,调用和背调接口的的参数是否一致,动态库库调用中若不一致,编译链接通过,但执行可能导致 std::bad_alloc

2,确认是否使用vector,vector超容量时会重新申请二倍内存,因为vector会将老的一块内存,完全拷贝到另一块连续容量为2倍的vector内存中,高峰时内存将时当前系统的3倍,此时可能导致 std::bad_alloc

 

 

 


原文链接:https://blog.csdn.net/wuhenlegou110/article/details/86743672

这篇关于terminate called after throwing an instance of 'std::cad_alloc' what():std::bad_alloc的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!