我决定学习 C++(因为 Java 在某些方面并不擅长)所以我写了一个(非常)简单的程序。
#include <iostream>
using namespace std;
int main() {
cout << "This is a test" << endl;
int test = 100;
cout << test << endl;
return 0;
}
它按预期工作,但 Eclipse 似乎在该main
方法中添加了一个自动断点:
如何停止此自动断点插入?