0

我正在处理以下问题。正式地说,我使用的是 VS2010 Ultimate,我尝试编写一个 Windows 窗体应用程序,但我得到了指定的错误:

 1>f:\baza danych\baza\baza\Form5.h(475): error C2664: 'Bazadanych::Dodaj1' : cannot           convert parameter 1 from 'Car' to 'Car'
1>          Cannot copy construct class 'Car' due to ambiguous copy constructors or no available copy constructor

这里是 Car.h 我有这个类的声明

    public ref class Car
{
public:
    String^ category;
    String^ model;
    String^ rocznik;
    String^ cena;

    Car(){};
    Car(String^ ,String^ ,String^ );
    void edytuj(String^ ,String^ ,String^ );
    String^ getmodel(){return this->model;};
    String^ getrocznik(){return this->rocznik;};
    String^ getcena(){return this->cena;};
    virtual String^ getcat()
    {
        this->category="To rent";
        return this->category;
    };`
}

定义:

    Car::Car(String^ model1,String^ rocznik1,String^ cena1)
    {
       this->model=model1;
       this->rocznik=rocznik1;
       this->cena=cena1;
    };

    void Car::edytuj(String^ model1,String^ rocznik1,String^ cena1)
    {
       this->model=model1;
       this->rocznik=rocznik1;
       this->cena=cena1;
    };

错误提到的方法的类声明是:

public ref class Bazadanych
{
public:
cliext::list<Car^> Bazatorent;
cliext::list<Rented^> Bazarented;
cliext::list<Unavaible^> Bazaunavaible;
cliext::list<Car^>::iterator it1;
cliext::list<Rented^>::iterator it2;
cliext::list<Unavaible^>::iterator it3;

Bazadanych()
{
    it1=Bazatorent.begin();
    it2=Bazarented.begin();
    it3=Bazaunavaible.begin();
};
bool Empty();
void Dodaj1(Car);
void Dodaj2(Rented);
void Dodaj3(Unavaible);
void Usun1(Car);
void Usun2(Rented);
void Usun3(Unavaible);
void Czysc();
};

和定义:

void Bazadanych::Dodaj1(Car Element)
{
this->Bazatorent.push_back(Element);
};

我在单独的 .h 和 .cpp 文件中有定义和声明。对于其他方法“Dodaj”和“Usun”我有完全相同的问题。如果它可以帮助类 Car 是类 Rented 和 Unavaible 的基类。我是 C++/CLI 的新手,所以如果有人能帮助我,我将不胜感激。

4

2 回答 2

1

考虑到它是托管类,我发现错误消息很奇怪。但是您可以通过将方法的签名更改为:

void Bazadanych::Dodaj1(Car^ Element) // notice the "^"

其他类似方法也一样。

我猜如果没有帽子 (^),编译器会将变量视为常规 C++ 类,因此需要一个复制构造函数,即使托管类甚至没有复制构造函数(您可以编写它们,但它们' 永远不会像常规 C++ 类那样被隐式调用)。

编辑:关于您评论中的错误:而不是像这样实例化类:

Car car;

像这样做:

Car^ car = gcnew Car();
于 2013-02-27T20:44:57.360 回答
0

它说明了它的含义:您没有Car. 它可能看起来像这样:

Car::Car(const Car& c) { 
    /* your code here*/ 
};

这里这里的一些背景。

于 2013-02-27T20:36:40.420 回答