Home  >  Article  >  Java  >  The difference between empty string and null in java

The difference between empty string and null in java

王林
王林Original
2019-12-03 15:46:292603browse

The difference between empty string and null in java

Difference:

The empty string is an object that has been instantiated and has memory space, but the value stored in the memory space is empty; and null It represents an object that has not been instantiated and does not occupy memory space.

String aaa = "";//空串
String bbb=null; //null值

Recommended online video tutorial: java course

For example:

public class HelloWorld {
    public static void main(String [] args){
     System.out.println("hello world!");
//     System.out.println(args[0]);
        String aaa = "lihuijuan";
        String bbb ="";
        String ccc = null;
//        ccc.isEmpty();
        System.out.println(aaa.isEmpty());
        System.out.println(bbb.isEmpty());
        System.out.println(ccc.isEmpty());
    }
}

Running result:

The difference between empty string and null in java

That is to say, the object bbb that refers to the empty string can call properties such as String's isEmpty(), but ccc cannot be called, which means that ccc does not actually point to any memory space.

Recommended related article tutorials: Getting started with java development

The above is the detailed content of The difference between empty string and null in java. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn