上週我是一個調試代碼,出現了一個奇怪的情況:gdb通過兩個不同的return子句。我做了一個簡單的例子,示出了情況:爲什麼gdb顯示兩個不同的回報?
#include <iostream>
using namespace std;
int test() {
string a = "asd";
string b = "asd";
while (true) {
if (a == b) {
return 0;
}
}
return -1;
}
int main() {
int result = test();
cout << "result: " << result << endl;
}
當調試我得到的代碼:
(gdb) b main
Breakpoint 1 at 0x1d4c: file example.cpp, line 19.
(gdb) r
Starting program: /Users/yuppienet/temp/a.out
Reading symbols for shared libraries +++. done
Breakpoint 1, main() at example.cpp:19
19 int result = test();
(gdb) s
test() at example.cpp:7
7 string a = "asd";
(gdb) n
8 string b = "asd";
(gdb) n
11 if (a == b) {
(gdb) n
12 return 0;
(gdb) n
15 return -1;
(gdb) n
16 }
(gdb) n
main() at example.cpp:20
20 cout << "result: " << result << endl;
(gdb) n
result: 0
21 }
(gdb) n
0x00001ab2 in start()
我指出,即使GDB示出了線15,返回值是0(finish
命令也證實了這一點)。
所以問題是:爲什麼gdb顯示第15行:return -1
,即使函數沒有真的返回這個值?
謝謝!
編輯: 我忘了提,我有以下行編譯:
g++ -Wall -pedantic -g -pg example.cpp
+1這看起來就是答案 - 如果你改變a和b爲整數,你不會看到返回-1 – 2010-05-10 12:34:34