c++作业6?

一、实验目的
1.理解静态成员(静态数据成员、静态成员函数)的作用与使用;
2.理解友元(友元函数、友元类)的作用于使用。
二、实验内容
2.1练习(一):
1.理解下面的程序,并在VC++6.0下运行查看结果,回答程序后面的问题。
#include <iostream.h>
#include <string.h>

class CStudent
{
public:
CStudent(char *n, int a);
~CStudent();

static void SetAge(int age);

private:
char *name;
int age;
static int nTotalObj;
};

int CStudent::nTotalObj = 0;

CStudent::CStudent(char *n, int a)
:age(a)
{
int nLen = strlen(n);
name = new char[nLen+1];
strcpy(name,n);
name[nLen] = ’\0’;

nTotalObj++;
}
CStudent::~CStudent()
{
delete[] name;

nTotalObj--;
}

void CStudent::SetAge(int age)
{
this->age = age;
}

void main()
{
CStudent stu1("张三",25);
CStudent str2("李四",26);
cout<<"CStudent::nTotalObj="<<CStudent::nTotalObj<<endl;
}
问题一:以上程序编译能通过吗,为什么?
问题二:成员变量nTotalObj在程序中起什么作用,它是如何实现的?
问题三:如果规定该程序的主函数和类CStudent中的成员变量的属性不允许改变,应该如何改正该程序?
2.理解下面的程序,并在VC++6.0下运行查看结果,回答程序后面的问题。
#include <iostream.h>
#include <string.h>

class CStudent
{
public:
CStudent(char *n, int a);
~CStudent();

private:
char *name;
int age;
};
CStudent::CStudent(char *n, int a)
:age(a)
{
int nLen = strlen(n);
name = new char[nLen+1];
strcpy(name,n);
name[nLen] = ’\0’;
}
CStudent::~CStudent()
{
delete[] name;
}

class CTeacher
{
public:
CTeacher(char *tn, int ta);
~CTeacher();

void SetStuAge(int a);

private:
char *name;
int age;

CStudent stu;
};
CTeacher::CTeacher(char *tn, int ta)
:age(ta)
{
int nLen = strlen(tn);
name = new char[nLen+1];
strcpy(name,tn);
name[nLen] = ’\0’;
}
CTeacher::~CTeacher()
{
delete[] name;
}

void CTeacher::SetStuAge(int a)
{
stu.age = a;
}

void main()
{
CStudent stu("张三",25);
CTeacher tea("李四",26);
}
问题一:以上程序有两大错误,试指出来,并改正之?
2.2练习(二):
1.某商店经销一种货物。货物成箱购进,成箱卖出,购进和卖出时以重量为单位,各箱的重量不一样,因此,商店需要记录下货物库存的总重量。试用C++模拟商店货物购进和卖出的情况。(提示:将总重量定义为静态成员)


灬elliott
浏览 4737回答 1
1回答

灬elliott

1.二:它是静态数据成员 为整个类所共有,不属于任何一个具体对象
打开App,查看更多内容
随时随地看视频慕课网APP