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 1039027
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T15:02:56+00:00 2026-05-16T15:02:56+00:00

i have an object – Employee, and i want to know how to insert

  • 0

i have an object – Employee, and i want to know how to insert this object to a map structure sorted by char* lastName field. Thanx.
My map need to contain pointers to Employee objects not the objects themselves. the key is the last name of the employee, the map need to be sorted by the employees last name, should i use multimap?

  • 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-05-16T15:02:57+00:00Added an answer on May 16, 2026 at 3:02 pm

    So you’ve got an std::map with a custom comparator function (you’ve overloaded the less than operator) and you want to insert objects so that they’re in the right order?

    myMap.insert( make_pair( myKey, myEmployee ) );
    

    where myKey is the key to your map. However, from the sound of your question it actually sounds like you’re using the object as it’s own key. In that case, just use std::set and

    mySet.insert( myEmployee );
    

    I’d also suggest that you not use char* as a means to store lastName and prefer the std::string.

    EDIT:

    Following the comments down below, are you having to be able to pass in a const char* into another function? If so, still use string as it has a nice method .c_str() specifically for legacy compatibility. It can be used as so:

    void stuffHappens(const char* _input){
        //magic happens in here
    }
    
    stuffHappens( myString.c_str() );
    

    and voila, you’re much safer!

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

Sidebar

Related Questions

I have this provided function that I want to use: boolean check(Comparable<Object> obj1, Comparable<Object>
I have an object for which I want to generate a unique hash (override
Let's imagine that we have object Animal $.Animal = function(options) { this.defaults = {
I have this before the process: protected void onPostExecute(SortedSet<RatedMessage> result) { List<Object> list=Arrays.asList(result.toArray()); lancon.putExtra(results,
My questions is next: For example I have object A (this is data model
i have object like this: some_object this object has like 1000 properties. i would
Dear all, this is going to be tough: I have created a game object
But I'm wondering what the naming conventions are for this? Like.. I have object
I have object obj which is 3rd party component, // this could take more
I have object with relation, and want save it, but I have only id

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.