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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T14:41:59+00:00 2026-06-13T14:41:59+00:00

I have a method that I want to run iteratively on one of two

  • 0

I have a method that I want to run iteratively on one of two data members, alternating between them. I thought of doing the following

void myClass::alternating_method(){
    Graph G;
    &G = iteration_number%2 ? &A : &B;
    helper_method_which_modifies(G);
    iteration_number++;
    return;
}

where A and B and iteration_number are all myClass members but I’m not sure it will work. It seems right to me but the style rubs me wrong. The desired result is to call object.alternating_method() in a loop and have it modify object.A and object.B .

Will this work? Is there a better way? Will it have unexpected consequences? Do I need to worry about a destructor being called for G when it goes out of scope?

EDIT: To clarify, I meant helper_method_which_modifies as shorthand for 100 lines containing several methods. The ones that modify G are mostly boost graph methods. Now that I see the answers, it seems the best thing is to have an alternator which does nothing but choose between A and B and then pass the correct variable off to another method.

  • 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-13T14:42:01+00:00Added an answer on June 13, 2026 at 2:42 pm

    As already stated by Luchian Grigore, it won’t work because you need a L-value.

    The idea is working though with little changes.

    void myClass::alternating_method(){
        Graph& G = iteration_number%2 ? A : B;
        helper_method_which_modifies(G);
        iteration_number++;
        return;
    }
    

    Or with a bit more changes:

    void myClass::alternating_method(){
        helper_method_which_modifies((++iteration_number%2) ? A : B);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Okay, so I want to have a generic method that can read data from
I have method that run many times. I dont want to nest ifs inside
I have a method that transfers data from one database to another and in
I have this method that I want to run a php file using ajax
I have a method: myMethod() {} that I want to make accessible to javascript.
I have a method CreateAccount(...) that I want to unit test. Basically it creates
Say I want to have a method that takes any kind of number, is
I have a method that returns a list of type string. I want to
I have a method running on the EDT and within that I want to
I have a method in a class in another file that I want to

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.