C++定义一个图书类,成员变量是书名和索书号。利用友元函数,输入一个索书号,然后返回书名!!!有问题!
源码如下:编译可以通过,运行就报错了。。。。在线等。。。#include<iostream.h>#include<string.h>classbook{public:vo...
源码如下:编译可以通过,运行就报错了。。。。在线等。。。
#include<iostream.h>
#include <string.h>
class book
{
public:
void output();
book()
{
p_name=NULL;
}
book(char*pname,int ID)
{
if(p_name=new char[strlen(pname)+1]) //为p_name开辟空间!strlen返回用户输入字符个数,strcpy复制字符!!!
strcpy(p_name,pname);
bookID=ID;
}
~book()
{
if(p_name!=NULL)
{
delete[]p_name;
p_name=NULL;
}
} friend int checkID(book name1);
void getname()
{
cout<<p_name<<endl;
}
private:
char *p_name;
int bookID;
};
void book::output()
{
cout<<p_name<<endl; //成员函数可以访问类的私有变量
cout<<bookID<<endl;
}
int checkID(book name1)
{
return name1.bookID;
}
int main()
{
book name1("one",12);
name1.output();
int M=0;
M=checkID(name1);
int enterID;
cout<<"输入索引号:"<<endl;
cin>>enterID;
if(M==enterID)
name1.getname();
else
cout<<"查无此书!!!"<<endl;
return 0;
} 展开
#include<iostream.h>
#include <string.h>
class book
{
public:
void output();
book()
{
p_name=NULL;
}
book(char*pname,int ID)
{
if(p_name=new char[strlen(pname)+1]) //为p_name开辟空间!strlen返回用户输入字符个数,strcpy复制字符!!!
strcpy(p_name,pname);
bookID=ID;
}
~book()
{
if(p_name!=NULL)
{
delete[]p_name;
p_name=NULL;
}
} friend int checkID(book name1);
void getname()
{
cout<<p_name<<endl;
}
private:
char *p_name;
int bookID;
};
void book::output()
{
cout<<p_name<<endl; //成员函数可以访问类的私有变量
cout<<bookID<<endl;
}
int checkID(book name1)
{
return name1.bookID;
}
int main()
{
book name1("one",12);
name1.output();
int M=0;
M=checkID(name1);
int enterID;
cout<<"输入索引号:"<<endl;
cin>>enterID;
if(M==enterID)
name1.getname();
else
cout<<"查无此书!!!"<<endl;
return 0;
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询