我有一个 c++ 程序,其名称pso.cpp
由一个输入和两个输出(按指针)命名,如下所示:
void pso(int32_T Iteration, real_T *gbest, real_T *w)
我有另一个 c++ 程序,名称main.cpp
如下:
#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
by 命令g++ main.cpp -o main
。
但我遇到了这个错误:
main.cpp:(.text+0x29): undefined reference to pso(int, double*, double*)'
collect2: ld returned 1 exit status
如何解决编程错误?