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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T16:08:55+00:00 2026-06-06T16:08:55+00:00

Say I have an object containing a value. I wish to get the index

  • 0

Say I have an object containing a value. I wish to get the index of object with a particular value from a list of objects. I use the below code to do it,

int MyClass::getIndex(list& somelist, int requiredValue)
{

    for( i=0; i != somelist.count(); ++i)
    {

        if(somelist.at(i)->value() == requiredValue)
            return i;
        else
            continue;
    }

return -1;
}

How to avoid the “doesn’t return a value on all code paths” warning without using an iterator?

  • 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-06T16:08:57+00:00Added an answer on June 6, 2026 at 4:08 pm

    You must return T from the function in any case. If the value possibly does not exists in the list you have options:

    1. return default value (nullptr for pointer for example, -1 for integer possibly)
    2. use boost::optional<T>
    3. return end iterator:

      std::list<int>::iterator find_something(std::list<int> &my_list)
      {
           for (auto it = my_list.begin(); it != my_list.end(); ++it)
           { 
               if (cond)
               {
                   return it;
               }
           }
      
           return my_list.end();
      }
      

    Also

    If you just want to find the iterator to some value, use std::find:

    auto it = std::find(my_list.begin(), my_list.end(), my_value);
    

    Finally

    Don’t use list if you need access by index. Use vector in that case

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

Sidebar

Related Questions

Say I have an object MyObj stuff; To get the address of stuff, I
Lets say I have an object with two boolean properties: public bool AdvancedMode{ get;
Lets say I have an object that has stringProp1, stringProp2. I wish to store
Let's say I have an object: public class CustomObj { DateTime Date { get;
Say I have a LinkedHashMap containing 216 entries, how would I get the first
I have a number of HashMap data structures containing hundreds of Comparable objects (say,
Say I have an object-like data record like this: $article = array( 'title' =>
Say I have an object: struct Foo { int bar_; Foo(int bar) bar_(bar) {}
Say i have a object in dynamic memory (new) and inside one of its
Let's say you have an object literal: var d = { x: +'35', y:

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.