Hallo,
ich habe folgende Ausschnitte im C++-Programm
Es folgen die Fehlermeldungen:
"incompatible types in assignment of `long int*' to `long int*[0u]'"
"incompatible types in assignment of `double*' to `double*[0u]'"
Weiß jemand woran das liegen könnte. Eigtl sollte es nicht all zu kompliziert sein, aber ich beiß mir mittlerweile schon lange genug die Zaehne daran aus :fuchtel:
Danke schon mal im Vorraus 🙂
ich habe folgende Ausschnitte im C++-Programm
Code:
[SPOILER]#include <iostream>
#include <ostream>
#include <stdlib.h>
#include <stdio.h>
#include <fstream>
#include <string>
#include <string.h>
#include <sstream>
#include <math.h>
#include <cstdlib>
#include <windows.h>
using namespace std;[/SPOILER]
class VarArray{
private:
...
long *larray[]; // longarray
double *darray[]; // doubleArray
public:
VarArray(int laenge, char* typ){
...
larray=new long[laenge];
...
darray=new double[laenge];
...
} // end Konstruktor
Es folgen die Fehlermeldungen:
"incompatible types in assignment of `long int*' to `long int*[0u]'"
"incompatible types in assignment of `double*' to `double*[0u]'"
Weiß jemand woran das liegen könnte. Eigtl sollte es nicht all zu kompliziert sein, aber ich beiß mir mittlerweile schon lange genug die Zaehne daran aus :fuchtel:
Danke schon mal im Vorraus 🙂