开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
VS2013
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
opencv
问题(Question):
新建的cpp 要正确debug 都要重建专案
否则会显示之前dubug的结果
下面范例 第一次debug 会正确 显示 Test1 Test1
但若把a.cpp b.cpp cout 都改 Test2
在debug 会显示 Test2 Test 1 而不是 Test2 Test2
唯有重建后才会都正确显示 ? 但我不太懂这问题
后来我有测试接下来建的cpp 都会这样 但不知道哪里出问题?
*[36m喂入的资料(Input):*[m
*[36m预期的正确结果(Expected Output):*[m
*[36m错误结果(Wrong Output):*[m
*[36m程式码(Code):(请善用置底文网页, 记得排版) *[m
main.cpp
#include "global.h"
#include "a.cpp"
#include "b.cpp"
int main()
{
a ob1;
b ob2;
a.init();
b.init();
return 0 ;
}
a.cpp
#include "global.h"
class a
{
private :
Mat img;
int height, width;
public:
void init( )
{
cout << "Test1" << endl;
}
};
b.cpp
#include "global.h"
class b
{
private :
Mat img;
int height, width;
public:
void init()
{
cout << "Test1" << endl;
}
};
补充说明(Supplement):