2011-02-17 118 views
0

我在我的C++中有一個函數,我想返回一個字符串。我嘗試了幾種方法,但得到錯誤。我試過了C#的迴歸方式「....」;返回myString;但每次都會出錯。在C++中返回一個字符串

編輯:0000005:訪問衝突寫入位置0x7a0dcc30

在0x100c1486(DGGGGG.dll)在TestConsoleApp2.exe未處理的異常。

+3

錯誤?什麼錯誤?不要在你的問題中看到他們... – 2011-02-17 09:45:05

+1

向我們展示一些代碼。 – NPE 2011-02-17 09:45:51

回答

6
std::string methodReturningString() 
{ 
    std::string something = "Hello "; 
    something += "world!"; 
    return something; 
}