聚合
- 说明:组合和聚合,不是C++的语法要求,是应用中的常用手段。
- 需求:
给计算机配一台音响类。
Cpu.h
#pragma once
#include <string>
using namespace std;
class Cpu{
public:
Cpu(string brand = "Inter", string model = "i5");
~Cpu();
private:
string brand; //品牌
string model; //型号
};
Cpu.cpp
#include "Cpu.h"
#include <iostream>
Cpu::Cpu(string brand, string model){
this->brand = brand;
this->model = model;
cout <<