以下のコードを使用して、float 配列の値を設定します
#include "math.h"
#include "string.h"
#include <stdio.h>
#include <stdlib.h>
class MathCore
{
public:
MathCore();
virtual ~MathCore( );
bool dosomething ( );
};
と
#include "MathCore.h"
MathCore::MathCore()
{
}
MathCore::~ MathCore()
{
}
bool MathCore::doSomething ( )
{
//-------------------------------------------------
float *xArray;
xArray=(float*)malloc(sizeof(float)*5);
float v=0.1;
xArray[0]=v;
return 1;
}
常に EXC_BAD_ACCESS エラーを報告します
xArray[0]=v;
あなたのコメント歓迎