• 大小: 2.93KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 标签:

资源简介

C++实战源码-自定义图书类(入门级实例204).zip

资源截图

代码片段和文件信息

// Book.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include “string.h“
#include “iostream.h“

class Book {
private:
char m_title[30]; //定义书名
char m_author[30]; //定义作者
double m_price; //定义价格
public:
Book(){}
Book(char title[] char author[] double price) //利用构造方法初始化域
{
strcpy((char *)(m_title)(char *)(title));
strcpy((char *)(m_author)(char *)(author));
m_price = price;
}
char * gettitle()  //获得书名
{
return m_title;
}
char * getAuthor()  //获得作者
{
return m_author;
}
double getPrice()  //获得价格
{
return m_price;
}
};


int main(int argc char* argv[])
{
Book book(“《VC从入门到精通(第2版)》“ “明日科技“ 59.8);//创建对象
cout << “书名:“ << book.gettitle() << endl; //输出书名
cout << “作者:“ << book.getAuthor() << endl;  //输出作者
cout << “价格:“ << book.getPrice() << “元“ << endl; //输出价格

return 0;
}


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         999  2010-10-13 18:22  Book\Book.cpp
     文件        4512  2010-10-13 18:02  Book\Book.dsp
     文件         533  2010-10-13 18:02  Book\Book.dsw
     文件         291  2010-10-13 18:02  Book\StdAfx.cpp
     文件         769  2010-10-13 18:02  Book\StdAfx.h

评论

共有 条评论