发新话题
打印

为什么和我想要的结果不一样啊??????

看看這樣行不行

#include <iostream.h>
class point
{
  public:
  int x;
  int y;
  point(int *a,int *b)
  {
   x=&a;
   y=&b;
  }
  void output()
  {
          cout<<x<<","<<y;
  }
  void output(int &x,int &y)
  {
    x=a;
    y=b;
  }
};
void main()
{
   point pt(3,3);
   pt.output(5,5);
   pt.output();
}
yangfeng

TOP

发新话题