【 在 DorD 的大作中提到: 】
: 标 题: Re: 静态成员问题
: 发信站: 水木社区 (Mon Oct 7 19:26:47 2024), 站内
:
: 我写了这么一段,想看看无参的构造函数构造了个啥,可惜跑不起来
:
: #include<iostream>
: using namespace std;
:
:
: class Point
: {
: private: int x,y;
:
: public:Point(){};
: Point(int a ,int b){x=a;y=b;}
: void Display01()
: {
: cout<<x<<"\n"<<y<<endl;
: }
: }
这里少了一个 ;
: int main()
: {
: Point a; a.Display01();
: Point b(3,10);b.Display01();
:
: return 0;
: }
: --
:
: ※ 来源:·水木社区
http://www.mysmth.net·[FROM: 36.143.165.*]
--
FROM 120.253.228.*