gpt4 book ai didi

c++ - 如何在VS2015中添加一些头文件

转载 作者:行者123 更新时间:2023-11-30 03:26:38 25 4
gpt4 key购买 nike

我读过 visual studio 2012 adding new header file ,但我的问题还没有解决!无论如何,我想将 foo.h 添加到我的项目中:

#pragma once
void MyLDA(vector<int>, Mat_<float>, Mat&, Mat&);

现在,foo.cpp:

#include "stdafx.h"
#include "foo.h"

using namespace std;

auto getIndices = [](const std::vector<int>& vec, const int value)
{
//some code
}
void MyLDA(vector<int> gnd, Mat_<float> _data, Mat &eigvector, Mat &eigvalue)
{
//some code
}

当我构建我的项目时,我得到这个错误:

'vector': 未声明的标识符

意外输入“int”

'my_project':找不到标识符

最佳答案

您需要 #include <vector>使用 std::vector .另外,best practice is to avoid using namespace std; and instead write std::vector .有些人还建议对于 OpenCV 类,例如 Mat . (就其值(value)而言,我自己的编码风格是在 STL 类前面编写 std::,因为那里有很多带有自定义 stringarray 类的遗留代码,但要编写 coutmemcpy() 而不是像 std::cout 这样的东西,对于 STL 之前很久就存在的东西。)

lambda 表达式赋值后还少了一个分号,乍一看很像函数定义。 (@BarmakShemirani 捕获了它,不是我。)

关于c++ - 如何在VS2015中添加一些头文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48143901/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com