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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T23:31:04+00:00 2026-06-14T23:31:04+00:00

in my project ,Somewhere I have to use if n else condition to check

  • 0

in my project ,Somewhere I have to use if n else condition to check the null variables

String stringValue = null;
String valueOf = String.valueOf(stringValue);

but when i check the condition like

  if (valueOf == null) {
        System.out.println("in if");
    } else {
        System.out.println("in else");
    }

then output is “in else” ,why this is happening?

  • 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-14T23:31:06+00:00Added an answer on June 14, 2026 at 11:31 pm

    Here’s the source code of String.valueOf: –

    public static String valueOf(Object obj) {
        return (obj == null) ? "null" : obj.toString();
    }
    

    As you can see, for a null value it returns "null" string.

    So,

    String stringValue = null;
    String valueOf = String.valueOf(stringValue);
    

    gives "null" string to the valueOf.

    Similarly, if you do: –

    System.out.println(null + "Rohit");
    

    You will get: –

    "nullRohit"
    

    EDIT

    Another Example:

    Integer nulInteger = null;
    String valueOf = String.valueOf(nulInteger) // "null"
    

    But in this case.

    Integer integer = 10;
    String valueOf = String.valueOf(integer) // "10"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Somewhere in an ARC project, I have: //Class1.h @interface Class1 { NSDictionary * dict;
I have a project where a user for the company will use a winform
I have an MVC 3 web application project, and in one page I use
We have an ASP.NET website that we use internally to do some project tracking
My project in rep: project/dir A/ project/dir B/ (MacOSX) Locally: project/dir A/ ~/somewhere/dir B/
I'm pretty sure I saw somewhere in a popular Git project the branches had
This project was coped almost exacatly from the example on the admob page but
Say you have an ASP.NET MVC project and are using a service layer, such
I have been working on a side project for the last few weeks, and
For a java/scala project I have some dependencies that are not in a remote

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.