そのクラスのインスタンスのアドレスを保持するポインター配列を作成したいので、scanner
関数を呼び出すと、同じオブジェクトを検索してpcode
出力します。私はそうしましたが、別の継承されたクラスオブジェクトを使用しようとすると、「メモリアクセス違反」が発生し、基本の静的スキャン関数を介して継承されたクラス関数にアクセスできません。
混乱して申し訳ありませんが、ここに私のコードがあります
using namespace std;
class product{
public:
product();
product(long&,string&);
void const printer();
void setCode();
void getCode(long);
void static scanner();
static product *point; //when this was static did compile but not now
static int a;
private:
string pname;
long pcode;
};
class PrepackedFood:public product{
//snip
private:
double uPrice;
};
class FreshFood:public product{
//snip
private:
double weight;
double pricepk;
};
製品.cpp
product *product::point=new product [15]; //when i use try to use dynamic cant
int product::a(0);
product::product(){
pcode=0;
pname="unknown";
point[a]= this; //here works for normal arrays not now
a++;
}
product::product(long& c,string&n){
pcode=c;
pname=n;
}
void product::scanner(){
long a;
int i=0;
while(i<3){
if (point[i]->pcode==a){
point[i]->printer();
break;
}
i++;
}
}
void product::setCode(){
cout<<"enter product name\n ";
cin>>pname;
cout<<"enter product code _____\b\b\b\b\b\a";
cin>>pcode;
}
//blah blah for other members
main.cpp
#include "product.h"
#include <iostream>
int main(){
int i=0;
cout<<"enter fresh foods"<<endl;
FreshFood f[3];
for(int a=0;a<3;a++)
f[i].setCode();
product::scanner();
return 0;
}
それはメモリアドレスの問題ですか、それともまったく別のものですか? そして、なぜscan{this->print()}
ベース関数を呼び出すのですか? print()
継承された関数を呼び出す方法はありますか?