【翁恺】03-自动售货机例子

ticket machine

  • ticket machines prints a ticket when a customer inserts the correct money for their fare
  • our ticket machines work by customers inserting money into them ,and then requesting a ticket to be printed.a machine keeps a running total of the amount of money it has collected throughout its opration

规范:项目名全小写; 类名每个单词首字母大写;

每个类都应该有一个 .h  和一个 .cpp  。

在 .h 文件中声明类,在 .cpp 里面定义 .h 里面声明的实体。

TicketMachine.h

#pragma once
class TicketMachine
{
public:
    void showPrompt();    // 函数的原型
    void insertMoney(int money);
    void getMoney();
    void printTicket();
    void showBalance();
    void printError();
    void showTotal();
private:
    int price;  // 数据
    int balance;
    int total;
};

TicketMachine.cpp

#include "TicketMachine.h"
#include <iostream>
using namespace std;

void TicketMachine::showPrompt() {
	cout << "some thing!";
}

void TicketMachine::insertMoney(int money) {
	balance += money;
}

void TicketMachine::showBalance() {
	cout << balance;
}

main.cpp

#include "TicketMachine.h";

int main() {
    TicketMachine tm;
    tm.insertMoney(100);
    tm.showBalance();
    return 0;
}

输出: -858993360

:: 域的解析符

  • 类名::函数名   类中的一个函数
  • ::函数名
void S::f(){
    ::f();//woulde be recursive otherwise!  全局的函数
    ::a++;//select the aglobal a  全局的a
    a--;//the a at class scope   类内的a
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

理心炼丹

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值