1

在这个程序中,我们使用从 a 类到 c 类的数据转换。当我们使用

a(c c1)
{
   return (c1.getd()*100)
}
// constructor in class a, this is correct, but when when we use

c(a a1)
{
   return (a1.getb()/100)
}
// constructor, then compile error comming that getb is not a member of a please clear what is the problem.


#include<iostream.h>
#include<conio.h>

    class a;
    class c {
       int d;
       public:
          c() {
             d=0;
          }
          c(int x) {
             d=x;
          }
          int getd() {
             return d;
          }
          void putdata() {
             cout<<d;
          }
          c(a a1){ 
             d=(a1.getb()/100);//here is compile error coming --getb is not a member of a
          }
  };
  class a {   
     int b;
     public:
       a() {
     b=0;
       }
       a(int x) {
     b=x;
       }
       void putdata() {
         cout<<b;
       }
       int getb() {
         return b;
       } 
   };

  void main() {
    c c1;
    a a1=100;
    a a2(100);
    c1=a1;

    c1.putdata();
    getch();
  }
4

4 回答 4

1

a被(前向)声明,但在遇到该函数定义时未定义。将定义移到 的定义之后class a

class a;

class c {
    int d;
public:
    c() { d=0; }
    c(int x) { d=x; }
    int getd() { return d; }
    void putdata() { cout<<d; }

    c(a& a1); // Pass a1 as reference as class a is not yet defined.
  };

class a
{
...
};

c::c(a& a1)
{ 
    d=(a1.getb()/100);
}

此外,#include <iostream>而不是#include <iostream.h>.

于 2012-04-10T11:17:38.973 回答
1

当你写

class a;

您承诺您将在稍后阶段定义“a 类”。

然后,您在定义它之前使用了类 a。可以通过在定义类 a 之后编写使用类 a 的代码来使代码工作。

#include<iostream>
#include<conio.h>

using namespace std;

class a;
class c
{
    int d;
public:
    c():d(0)         {}
    c(int x):d(x)    {}
    int getd()       {return d;}
    void putdata()   {cout<<d;}
    c(a a1);     // defined after class a is defined

};

class a
{   int b;
public:
    a():b(0)         {}
    a(int x): b(x)   {}

    void putdata()   {cout<<b;}
    int getb()       {return b;}     
};


c::c(a a1)
{
    // uses class a after it is defined
    d=(a1.getb()/100);
}

void main()
{
    c c1;
    a a1=100;
    a a2(100);
    c1=a1;


    c1.putdata();
    getch();
}
于 2012-04-10T11:20:22.803 回答
0

编译器总是从顶部解析您的文本文件,因此在使用方法或函数之前,您必须定义它。

您的行class a;告诉编译器有一个名为 a 的类,但此时编译器不知道任何成员函数。

如果你把下面的代码放在类 c 的声明之前,那么编译器就知道在getb类 a 的对象上使用 mehod 是不违法的,即使它不知道方法做了什么。

class a
{
    public:
        int getb();
}
于 2012-04-10T11:20:36.977 回答
0

我认为问题在于声明类的顺序。尝试以下操作:

#include<iostream.h>
#include<conio.h>

class a
{
  int b;

public:

  a()
  {
    b=0;
  }

  a(int x)
  {
    b=x;
  }

  void putdata()
  {
    cout<<b;
  }

  int getb()
  {
    return b;
  }

};

class c
{
  int d;

public:

  c()
  {
    d=0;
  }

  c(int x)
  {
    d=x;
  }

  int getd()
  {
    return d;
  }

  void putdata()
  {
    cout<<d;
  }

  c(a a1)
  {
    d=(a1.getb()/100);//here is compile error coming --getb is not a member of a
  }

 };

int main()
{
c c1;
a a1=100;
a a2(100);
c1=a1;


c1.putdata();
getch();

return 0;
}
于 2012-04-10T11:47:25.293 回答