在使用vector的push_back函數時,Release版下運行會出錯的一個原因

來源:互聯網
上載者:User
   在vs2008下,當在一個結構體中有vector類型的成員時,如果在定義了一個該結構體的變數,並使用memset函數對其初始化,在debug版本下並不會有問題。但換成release版本後,程式運行會產生異常,並報如下資訊:

Microsoft Visual Studio C Runtime Library has detected a fatal error in STLtest.exe.

Press Break to debug the program or Continue to terminate the program.

該問題主要是由於對結構體變數使用了memset函數,如果結構體中有vector這樣的類型,使用memset會導致結構體中的某些資訊丟失,從而在使用push_back函數插入資料時產生異常中斷。希望我的遭遇對大家有協助。

#include "stdafx.h"#include <vector>#include <iostream>using namespace std;typedef struct _structBB {int i;vector<int> vBBs;}BB;int _tmain(int argc, _TCHAR* argv[]){        BB bb;memset(&bb,0,sizeof(BB));bb.vBBs.push_back(1);return 0;}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.