Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8343597
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T06:06:54+00:00 2026-06-09T06:06:54+00:00

class Map { private: std::vector<std::string> key; std::vector<std::string> storage; int i; public: Map(); Map* set(std::string,

  • 0
class Map {
private:
    std::vector<std::string> key;
    std::vector<std::string> storage;
    int i;
public:
    Map();
    Map* set(std::string, std::string);
    std::string get(std::string);
};

Map::Map() {}
Map* Map::set(std::string k, std::string v) {
    key.push_back(k);
    storage.push_back(v);
    i++;
    return (this);
}
std::string Map::get(std::string k) {
    for (int k = 0; k < i; i++)
        if (key[i] == k)
            return storage[i];
}

I’m still playing around with C++ and classes this time. I haven’t “studied” maps and vectors yet, just read some documentation. This class serves no purpose but to try things out, so: yes, i know something similar to what I’m trying to achieve here already exists.

Why, compiling this code, am I getting:

main.cpp:32: error: no match for ‘operator==’ in
‘((Map*)this)->Map::key. std::vector<_Tp, _Alloc>::operator[] [with
_Tp = std::basic_string, std::allocator >, _Alloc =
std::allocator,
std::allocator > >](((long unsigned int)((Map*)this)->Map::i))
== k’

I mean, is that for real that the == operator doesn’t exists in vector?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T06:06:56+00:00Added an answer on June 9, 2026 at 6:06 am

    The reason is shadowing.
    Your int k shadows your parameter std::string k, so the compiler sees string == int and there is no such comparator.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class like this: class MyClass{ public: MyClass(int Mode); private: std::map <
I'm having the following (simplified) class: class Operator { private: std::map<std::string, std::unique_ptr<Operand>> op; public:
Is this possible? #include <map> class Example { private: std::map<std::string, std::string, less<std::string>, std::allocator< CustomPair<std::string,
I have a class like the one below: class Foo { private: std::map<std::string, Bar*>
Foo.h : class Foo { public: Foo(void); ~Foo(void); void AddScreen(std::string name, ScreenBase &screenToAdd); private:
#include stdafx.h #include <string> #include <map> using namespace std; class NiftyEmailProgram { private: typedef
I have an unordered map: class O(val a: Int) Map[String, List[O]] which I'd like
class A { static Map<String,ColA> mapA; static const int a = 12; static Map<String,colB>
I am having trouble using a private std::map variable from within a class template.
I have class that looks like this: class A { public: class variables_map vm

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.