我有一个名称为pso.cpp
的c++程序,其中一个输入和两个输出(通过指针)如下:void pso(int32_T Iteration, real_T *gbest, real_T *w)
我有另一个名为main.cpp
的C++程序,如下所示:
#include <math.h>
#include <stdio.h>
#include <iostream>
#include "pso.h"
using namespace std;
int main()
{
int32_T Iteration = 1000;
real_T gbest;
real_T w;
pso(Iteration, &gbest, &w);
std::cout << gbest << std::endl;
std::cout << w << std::endl;
return 0;
}
另外,
pso.h
如下:#ifndef __PSO_H__
#define __PSO_H__
/* Include files */
#include <math.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
#include "rt_nonfinite.h"
#include "rtwtypes.h"
#include "pso_types.h"
/* Function Declarations */
extern void pso(int32_T Iteration, real_T *gbest, real_T *w);
#endif
我通过命令
main.cpp
执行g++ main.cpp -o main
。但是我遇到了这个错误:
main.cpp:(.text+0x29): undefined reference to pso(int, double*, double*)'collect2: ld returned 1 exit status
我该如何解决编程错误?
最佳答案
g++ main.cpp -o main
应该
g++ main.cpp pso.cpp -o main
关于c++ - 如何解决错误 “undefined reference to pso(int, double*, double*)' collect2 : ld returned 1 exit status”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19986326/