JavaSE8基础 String 字符串为空与字符串对象为空
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaSE8基础 String 字符串为空与字符串对象为空相关的知识,希望对你有一定的参考价值。
os :windows7 x64
jdk:jdk-8u131-windows-x64
ide:Eclipse Oxygen Release (4.7.0)
code:
package jizuiku.t02; public class Demo01 { public static void main(String[] args) { String s1 = ""; //字符串为空.有对象,但是没内容 String s2 = null;//字符串对象为空.连对象都没有...(>_<) } }
Java优秀,值得学习。
学习资源:API手册+Java源码。
以上是关于JavaSE8基础 String 字符串为空与字符串对象为空的主要内容,如果未能解决你的问题,请参考以下文章
JavaSE8基础 String String.valueOf 将字符数组转成字符串
JavaSE8基础 String toCharArray 字符串转换成字符数组
JavaSE8基础 String concat与+ 连接两个字符串
JavaSE8基础 String trim 去除字符串两端的空格