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

  • Home
  • SEARCH
  • 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 3426092
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T06:40:21+00:00 2026-05-18T06:40:21+00:00

I am a Java and C# programmer. Recently, I am working on C++ project.

  • 0

I am a Java and C# programmer. Recently, I am working on C++ project. I am having a problem of how to write the sample code following in C++. The sample code following is to sort a property of a struct:

public struct Person
{
    public string name;
    public int age;
}

Add some Persons to a list and sort by the age:

static void main()
{
   List<Person> persons = new List<Person>();

   Person person = new Person();
   person.age = 10;
   person.name = "Jane";

   persons.Add(person);

   person = new Person();
   person.age = 13;
   person.name = "Jack";

   persons.Add(person);

   person = new Person();
   person.age = 12;
   person.name = "Anna";

   persons.Add(person);

   // sort age
   persons.Sort(delegate(Person p1, Person p2) 
   { return p1.age.CompareTo(p2.age); });

   persons.ForEach(delegate(Person p) 
   { Console.WriteLine(String.Format("{0} {1}", p.age, p.name)); });
}

How can I write an equivalent sample code in C++?

  • 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-18T06:40:22+00:00Added an answer on May 18, 2026 at 6:40 am

    Given the Person type :

    struct Person
    {
        Person(int age_, const std::string &name_)
            : age(age_), name(name_)
        {}
    
        int age;
        std::string name;
    };
    
    int main()
    {
        std::list<Person> persons;
        persons.push_back(Person(10, "Jane"));
        persons.push_back(Person(13, "Jack"));
        persons.push_back(Person(12, "Anna"));
    }
    

    Solution 1

    bool compareAge(const Person &lhs, const Person &rhs)
    {
        return lhs.age < rhs.age;
    }
    
    int main()
    {
        /* persons list initialization */
        persons.sort(&compareAge);
    }
    

    Solution 2 (using boost::bind)

    int main()
    {
        /* persons list initialization */
        persons.sort(boost::bind(&Person::age, _1) < boost::bind(&Person::age, _2));
    }
    

    There also is a solution using C++0x lambdas.

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

Sidebar

Related Questions

I'm a longtime Java programmer working on a PHP project, and I'm trying to
I am a Java programmer and need to work on a Flex/ActionScript project right
I'm a Java programmer, and I like my compiler, static analysis tools and unit
I'm a pretty experienced Java programmer that's been doing quite a bit of Win32
I'm a relatively new Java programmer coming from C++/STL, and am looking for a
I'm an old (but not too old) Java programmer, that decided to learn C++.
As the question states, i am a C#/Java programmer who is interested in (re)learning
I posted this question: https://stackoverflow.com/questions/418597/java-and-net-for-php-programmer and the answers I was given didn't really help
Java has generics and C++ provides a very strong programming model with template s.
Java has a convenient split method: String str = The quick brown fox; String[]

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.