我知道这个问题已经在别处被问过了,但我一直不明白这里出了什么问题。也许我做错了什么,因为这两个数组在一个结构内。
(编辑:我从其他代码中获取结构,我无法更改它)
我试图将两个浮点数组传递给一个函数,然后将操作结果保存在第一个数组中。
核心.h:
typedef struct{
//other stuff
float m_vector[16];
} structure_t;
class CoreClass{
private:
structure_t s1;
structure_t s2;
float *MyFunction(const float *vDest, const float *vNew);
}
核心.cpp:
#include "core.h"
#include "another_file.h"
void anotherFunction(){
//....
s1.m_vector = MyFunction(s1.m_vector, s2.m_vector); //error here
//....
}
float *CoreClass::MyFunction(const float *vDest, const float *vNew){
return yet_another_function(vDest, vNew);
}
但是,当我调用该函数时,出现此错误:
error: incompatible types in assignment of ‘float*’ to ‘float [16]’
为了完整起见,这是我正在调用的函数,尽管它在编译时似乎没有任何问题:
另一个文件.h
static __inline float *yet_another_function(const float *vDest, const float *vNew){
float *tmp = new float[16];
//tmp = matrix multiplication (vDest * vNew)
for(int i=0; i<4; i++)
for(int j = 0; j<4;j++)
for(int k = 0; 4; k++)
tmp[i + j*4] += vDest[i + k*4] * vNew[k + j*4];
return tmp;
}