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

📄 prog15_01.cpp

📁 一本语言类编程书籍
💻 CPP
字号:
// Program 15.1 Defining and using a derived class  File: prog15_01.cpp
#include <iostream>
#include "Box.h"                  // For the Box class
#include "Carton.h"               // For the Carton class
using std::cout;
using std::endl;

int main() {
  // Create a Box and two Carton objects
  Box myBox(40.0, 30.0, 20.0);
  Carton myCarton;
  Carton candyCarton("Thin cardboard");

  // Check them out - sizes first of all
  cout << endl
       << "myBox occupies "       << sizeof myBox       << " bytes" << endl;
  cout << "myCarton occupies "    << sizeof myCarton    << " bytes" << endl;
  cout << "candyCarton occupies " << sizeof candyCarton << " bytes" << endl;

//  myBox.length = 10.0;          // uncomment this for an error

//  candyCarton.length = 10.0;    // uncomment this for an error

  return 0;
}

⌨️ 快捷键说明

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