⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 classasn.cpp

📁 不错书对C++/C程序员很有用的大家不要错过.
💻 CPP
字号:
#include <iostream.h>
#include <string.h>


class BookStuff {
  public:
    BookStuff(char *title, char *publisher, char *author);
    void show_book(void) 
	{ 
		cout << "Book: " << title << " by " <<
        author << " Publisher: " << publisher << endl; 
	};
    operator char *();
   
  private:
    char title[64];
    char author[64];
    char publisher[64];
};

BookStuff::BookStuff(char *title, char *publisher, char *author)
 {
   strcpy(BookStuff::title, title);
   strcpy(BookStuff::publisher, publisher);
   strcpy(BookStuff::author, author);
 }

BookStuff::operator char *(void)
 {
   char *ptr = new char[256]; 
   
   return(strcpy(ptr, title)); 
 }


void main(void)
 {
   BookStuff big_book("Jamsa's C/C++ Programmer's Bible", "Jamsa Press", 
	   "Jamsa and Klander");
   
   char *title;
   title = big_book;
   cout << "The book's title is " << title << endl;
 }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -