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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T07:51:10+00:00 2026-05-23T07:51:10+00:00

I am trying to take in multiple parameters from a function and im am

  • 0

I am trying to take in multiple parameters from a function and im am checking if at least one of the parameters are not null or empty.

right now i am doing something like this.

void foo(String a, String b, String c, String d, ... other strings){

//make sure at least one of the inputs are not null.
if(a!=null || b!=null || c!=null || d!=null ... more strings){
  //do something with the string
}

}

so an input can be foo(null, null, null, "hey");
but it cannot be foo(null, null, null, null);

What my question is is there a better way to do this, rather than keep adding to the if statement. Im blanking out right now…. Thanks

  • 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-23T07:51:10+00:00Added an answer on May 23, 2026 at 7:51 am

    Use varags

       public static boolean atLeastOneEmpty(String firstString, String... strings){
          if(firstString == null || firstString.isEmpty())
             return true;
    
          for(String str : strings){
             if(str == null || str.isEmpty())
                return true;
          }
          return false;
    
        }
    

    Returns true if at least one string is empty

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

Sidebar

Related Questions

I am trying to take a data string from one column and split it
I'm trying to have multiple UIImageView 's each with two buttons - A Take
I'm trying to get data from multiple XML feeds and copy that data to
I'm trying to create a function that will take a string which could be
I'm trying to use a small script to download a field from multiple pages.
We have problems with members trying to sign up multiple accounts to take advantage
I have a UINavigationController . I'm trying to add multiple buttons on the right
I'm to the point now in my programming development that I'm trying to take
I'm trying to run multiple ddl statements within one Execute Immediate statement. i thought
I'm trying to find a way to support multiple configurations for nServiceBus from the

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.