繁体   English   中英

C ++类变量范围

[英]C++ Class Variable Scope

我对C ++类中的变量范围有疑问。 我正在研究的问题是创建一个包含一系列结构的类,每个结构都包含特定类型饮料的名称,成本和数量。

班级应具有公共成员职能,以购买饮品和显示菜单,并具有私有功能,以获取和验证资金投入(由buy_drink调用)并显示一天结束的报告(由析构函数调用)。

我在私有函数input_money中的作用域有问题。 我收到一条错误消息,指出尚未定义数组。 我测试了display_data函数(用于打印菜单),它单独运行良好,但是现在我不知道为什么input_money会出现作用域错误而display_data不会。 这是头文件:

/* need to create a class that holds an array of 
   5 structures, each structure holding string drink name,
   double cost, and int number in machine

   class needs public functions to display data and
   buy drink

   private functions input money -- called by buy_drink to accept,
     validate, and return to buy drink the amount of money input

   daily report -- destructor that reports how much money
     was made daily and how many pops are left in machine */

#ifndef DRINKS_H
#define DRINKS_H
#include <string>

class Drinks
{
 private:
  struct Menu
  {                                   
    std::string name;                 
    double cost;
    int number;
  };
  Menu list[5];             // array of 5 menu structures
  double money_made;        // track money made during the day
  double input_money(int);  // return validated money to buy_drink()
  void daily_report();      // called by deconstructor

 public:
  Drinks();              
  ~Drinks();             
  void display_data();
  void buy_drink(int);
};
#endif

这是实现文件:

/* implementation file for Drinks class */

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

const int SIZE = 5;
const int START_SIZE = 100;

Drinks::Drinks()
{
  list[0].name = "Coke";
  list[1].name = "Root Beer";
  list[2].name = "Orange Soda";
  list[3].name = "Grape Soda";
  list[4].name = "Bottled Water";

  for (int count = 0; count < (SIZE-1); count++)
    list[count].cost = .75;
  list[4].cost = 1;

  for (int count = 0; count < SIZE; count++)
    list[count].number = 20;

  money_made = 0;
}

void Drinks::display_data()
 {
  for (int count = 0; count < SIZE; count++) {
    if (count == 0)
      cout << count+1 << list[count].name << "\t\t$ ";
    else
      cout << count+1 << list[count].name << "\t$ ";
    cout << list[count].cost << "\t"
     << list[count].number << endl;
  }
}

double input_money(int c)
{
  double input;

  cin >> input;

  while (input != list[c].cost) {
    if (input < list[c].cost) {
      cout << "Not enough money.\n"
       << "Enter " << list[c].cost - input
       << " more cents to buy\n\n> ";
      cin >> input;
    }
    else if (input > list[c].cost) {
      cout << "Too much money.\n"
       << "I only need $" << list[c].cost << endl
       << "Enter " << input - list[c].cost
       << " less money: ";
      cin >> input;
    }
  }

  return input;
}

void Drinks::buy_drink(int c)                // this receives an int choice (to access corresponding structure in the list array)
{ 
  double input;                              
  cout << "Enter " <<list[c].cost             
       << " to purchase " << list[c].name    
       << "\n\n> ";                           
  input = input_money(c);                    // input money returns a validated and accurate price for the drink and is passed the choice to access array

  list[c].number -= 1;
  money_made += list[c].cost;                // add cost of drink to money made
}

void Drinks::daily_report()
{
  int end_size = 0;

  for (int count = 0; count < SIZE; count++)
    end_size += list[count].number;

  cout << "Today, you made $" << money_made << endl;
  cout << "There are " << START_SIZE - end_size
       << " drinks left in the machine" << endl;
}

Drinks::~Drinks()
{
  daily_report();

  cout << "goodbye mr anderson\n";
}

任何帮助将非常感激! 我似乎无法弄清楚为什么input_money函数无法访问数组中的结构。

谢谢!

编辑:完全菜鸟错误/粗心。 忘记在input_money函数定义中添加类的名称,并使用范围解析运算符(即应为Drinks :: input_money(int c))。 感谢那些回答。

double Drinks::input_money(int c) 
    // ^^^^^^^^ forgot this

您在提供实现时忘记了类名。

注意您的定义之间的区别

void Drinks::display_data

double input_money(int c)

在第二种情况下,您定义了一个自由函数,该函数不是该类的成员,并且没有有关该类成员的信息。 它应该是

double Drinks::input_money(int c)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM