我试图使用库ZBar用c ++读取QRCode。我不是这种语言的专家。我有以下问题:
#include <iostream>
#include <zbar.h>
using namespace std;
using namespace zbar;
int main()
{
cout << "Hello World!" << endl;
//Image image;
return 0;
}
这段代码实际上打印了&#34; Hello World&#34;正如所料。但是,如果我删除评论,请获取以下代码:
#include <iostream>
#include <zbar.h>
using namespace std;
using namespace zbar;
int main()
{
cout << "Hello World!" << endl;
Image image;
return 0;
}
所有内容仍然正确编译,没有错误或警告,但我没有获得任何输出!程序到达终点而不执行任何指令! 我只是用这个代码来简化,但问题实际上是,只要我使用zbar中的类添加一条指令,就好像我是&#34;清除&#34;主要的!这怎么可能?我该怎么办?谢谢!