C++中有两个文件:xt8-4.h和xt8-4.cpp 具体代码见问题补充,在VC++6.0中如何实现运行 我希望具体的步骤

//xt8-4-1.cpp(main.cpp)#include<iostream>usingnamespacestd;#include"xt8-4.h"intmain()... //xt8-4-1.cpp(main.cpp)
#include <iostream>
using namespace std;
#include "xt8-4.h"
int main()
{Student stud;
stud.set_value();
stud.display();
return 0;
}

//xt8-4.h(student.h)
class Student
{ public:
void display( );
void set_value();
private:
int num;
char name[20];
char sex ;
};
展开
 我来答
赏雪瑶
2011-05-20 · TA获得超过308个赞
知道小有建树答主
回答量:630
采纳率:0%
帮助的人:0
展开全部
#include <iostream.h>
// using namespace std; // MS VC++ comment out the line
#include "point.h"
#include "point.cpp"

void main(){
Point A(4,5);
cout<<"Point A,"<<A.getx()<<","<<A.gety();
A.getc();
Point B(A);
cout<<"Point B,"<<B.getx()<<","<<B.gety();
Point::getc();
}
--------------------------------------------
// point.cpp
int Point::count=0;
Point::Point(Point &p){
X=p.X;Y=p.Y;count++;}
----------------------------------
// point.h
class Point{
public:Point(int xx=0,int yy=0)
Point(Point &p);
~Point()
int getx()
int gety()
static void getc()
private:int X,Y;
static int count;
};
---------------------------

MS VC++ 编译通过。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式