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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T14:14:30+00:00 2026-06-15T14:14:30+00:00

If I want to implement some conditional code that can be implemented in both

  • 0

If I want to implement some conditional code that can be implemented in both of the ways. Then which way is better conditional operator ?: or if..then..else??

  • 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-15T14:14:31+00:00Added an answer on June 15, 2026 at 2:14 pm

    It depends. In general, you want the major flow of activity to
    be represented in the structure of the code. If the key point
    of the algorithm is that the variable x is initialized, then
    the best solution is to use the conditional operator:

    x = condition ? f1() : f2();
    

    If the decision is the critical issue for understanding what is
    going on, then you’ll prefer the if. In practice, this means
    that when both are reasonably possible, you’ll use ?:. The
    key being “reasonably”—if you find that you’re using the
    comma operator in the subexpressions, of the subexpressions have
    side effects, then using ?: is probably not “reasonable”.

    EDIT:

    When you do use the ?: operator, in all but the simplest
    cases, you should format it exactly as you would an if, e.g.:

    x = condition
        ? complex_expression_1
        : complex_expression_2;
    

    I do this regularly. (There’s a special case where I’ll push
    it: if I can reduce the entire function down to a single return
    statement. I still won’t allow side effects of the comma
    operator, but I will sometimes use more complicated expressions
    than I otherwise would.)

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

Sidebar

Related Questions

I want to implement some code in excel macro to group some data for
I want to test some QAbstractListModels I already implemented, is it better to use
I want to implement weather information which will show me results that depends on
I want to implement a simple script to do some boring housekeeping on my
I want to implement a LocationListener . Checked some tutorials and found this: /**
We want to implement a sitemap.xml feature in out CMS system. There is some
Microsoft has announce that WindowsLiveID become a OpenID provider . I want implement it
I want to define some constants in my C file. Its assembly code like
I want to implement following logic in my SQL query: If some date is
I want to implement a logical operation that works as efficient as possible. I

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.