0

嘿,我为我的库存设置了一个标题和一个 .cpp 文件。我使用向量。我不能使用向量库中的任何 push/ 或 pop 方法。我想主要使用它们。我也遇到了与我所做的 add 方法有关的 3 个错误,以便我可以添加到 main 中的向量中。

谁能帮我理解为什么我不能使用向量函数以及为什么会出现这些错误。

这是我的代码: Inventory.h

 #ifndef INVENTORY_H
    #define INVENTORY_H
    #include <string>


class Inventory
{
public:
    //Constructor
    Inventory();

    //Methods.
    std:: string add(string item);
    void displayInventory();
    void showInventory();
private:
    //Data members
    };


#endif //INVENTORY_H

库存.cpp

 #include "Inventory.h"
    #include <iostream>
    #include <vector>   //  To enable the use of the vector class.
    #include <string>


using namespace std;
vector<string> inventory;
vector<string>::iterator myIterator;
vector<string>::const_iterator iter;


Inventory::Inventory()
{

}

string Inventory :: add(string item)
{
inventory.push_back(item);
return item;
}

void Inventory:: showInventory()
{
char input[80];
    cin >> input;
    char inventoryRequest[] = "i";
    int invent = strcmp (input,inventoryRequest);
    //compare the player input to inventoryRequest (i) to see if they want to look at inventory.
    if(invent == 0)
    {
        displayInventory();
    }


}
void Inventory:: displayInventory()
{
//vector<string> inventory;
    cout<< "You have " << inventory.size() << " items.\n";
    cout << "\n******Inventory******";
    cout<< "\nYour items:\n";
    for (int i= 0; i< inventory.size(); ++i)
        cout<< inventory[i] << endl;
}

错误

Error   1   error C2061: syntax error : identifier 'string' c:\users\conor\documents\college\dkit - year 2 - repeat\dkit - year 2 - semester 1 - repeat\games programming\maroonedca2\maroonedca2\inventory.h   17  1   MaroonedCA2
Error   2   error C2061: syntax error : identifier 'string' c:\users\conor\documents\college\dkit - year 2 - repeat\dkit - year 2 - semester 1 - repeat\games programming\maroonedca2\maroonedca2\inventory.h   17  1   MaroonedCA2
Error   3   error C2511: 'std::string Inventory::add(std::string)' : overloaded member function not found in 'Inventory'    c:\users\conor\documents\college\dkit - year 2 - repeat\dkit - year 2 - semester 1 - repeat\games programming\maroonedca2\maroonedca2\inventory.cpp 19  1   MaroonedCA2
4

4 回答 4

3

string来自std命名空间

改变

std::string add(string item);

std::string add(std::string item);

有几个地方可以加强:

  1. 在 Inventory.cpp 中,最好不要using namespace std;为变量等提供完整的命名std::vector空间std::string

  2. vector<string> inventory;可以在 Inventory 类中移动

于 2012-11-22T02:29:33.477 回答
1

您的问题在标题中,而您缺少using namespace std. 我从来没有使用过这个命令。我认为最好明确命名空间,这样可以避免此类问题。

// Compiler knows what std::string is, but not string on it's own.
std:: string add(string item);

如果这是我的项目,我会删除using namespace stdstd::在任何地方使用。

此外,您没有正确使用您的课程。您有对 .cpp 文件中的全局变量进行操作的成员方法。

vector<string> inventory;

应该是类的私有成员Inventory

迭代器

为了解决您的评论,我想说的是您不需要声明这样的迭代器来使用它们,除非您需要存储一个迭代器以供以后使用(出于某种原因。虽然当迭代器是无效)。以下是您可以使用它们的几种方法。

类型定义

使用 typedef 让你的生活更轻松。

typedef std::vector<std::string> StringVec;
typedef StringVec::iterator StringVecIter;

现在您可以在循环中使用它们。

for(StringVecIter it = inventory.begin(); iter != inventory.end(); ++it)
{ ... }

汽车

执行这些循环的更简单方法是使用auto关键字。编译器将适当的类型分配给变量,在这种情况下是std::vector<std::string>::iterator

for(auto it = inventory.begin(); it != inventory.end(); ++it)
{ ... }
于 2012-11-22T02:30:22.283 回答
1

摆脱该using namespace std;语句(您永远不应该使用它!)并正确限定您正在使用的命名空间项,例如:

库存.h

#ifndef INVENTORY_H
#define INVENTORY_H
#include <string>

class Inventory
{
public:
    //Constructor
    Inventory();

    //Methods.
    std::string add(std::string item);
    void displayInventory();
    void showInventory();
private:
    //Data members
};

#endif //INVENTORY_H

库存.cpp

#include "Inventory.h"
#include <iostream>
#include <vector>   //  To enable the use of the vector class.
#include <string>
#include <algorithm>

std::vector<std::string> inventory;

Inventory::Inventory()
{
}

std::string Inventory::add(std::string item)
{
    inventory.push_back(item);
    return item;
}

void Inventory::showInventory()
{
    char input[80];
    std::cin >> input;
    char inventoryRequest[] = "i";
    //compare the player input to inventoryRequest (i) to see if they want to look at inventory.
    if (strcmp(input, inventoryRequest) == 0)
    {
        displayInventory();
    }
}

void displayInventoryItem(const std::string &item)
{
    std::cout << item << std::endl;
}

void Inventory::displayInventory()
{
    std::cout << "You have " << inventory.size() << " items." << std::endl;
    std::cout << std::endl;
    std::cout << "******Inventory******" << std::endl;
    std::cout << "Your items:" << std::endl;
    std::for_each(inventory.begin(), inventory.end(), displayInventoryItem);
}
于 2012-11-22T02:35:48.647 回答
-1

将您的清单、myIterator 和 Iter 放在您的类 Inventory 中。

于 2012-11-22T02:31:16.273 回答