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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T07:52:20+00:00 2026-06-06T07:52:20+00:00

If have if block like that if(foo() || foo2() || foo3()) { //do some

  • 0

If have if block like that

if(foo() || foo2() || foo3())
{
 //do some things
}

I need only one foo function to return true to execute that code.
But I have to call all of them.
Problem starts when first foo returns true. This way rest of foos (foo2 and foo3) are not being called.

I know that I can do it like that:

bool foo1 = foo1();
bool foo2 = foo2();
bool foo3 = foo3();

if(foo1 || foo2 || foo3) {}

But I have 18 foo functions and this is in few parts of my code.
Is there any trick to do it short and easy?

  • 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-06T07:52:24+00:00Added an answer on June 6, 2026 at 7:52 am

    The || operator is short circuiting. You could use | instead:

    if (foo1() | foo2() | foo3()) {}
    

    But you should also consider making an array of function pointers and calling them in a loop.

    and this is in few parts of my code

    You should refactor your code so that you can reuse it, rather than copying and pasting the same code in many places.

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

Sidebar

Related Questions

I need a some stored procedure that called like: search('foo bar') makes a search
I have some original code that manages exception safety like this: void foo() {
Let's say that I have a block of code like this: keysPressed = new
i would like to have a block on my drupal site(latest version) that displays
If you have some blocks of code that you would like to prevent execution
I have two block (like Block1 and Block2) and I have to display one
Say I have function with_foo that takes a block, and wrap it around a
Say I have a line in an emacs buffer that looks like this: foo
Suppose I have a function like this (I use akka 2.0.2): def foo(message: String):
Ok I have some code that boils down to a pattern like this class

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.