public boolean isEmpty() |
package java like ; public class Test14 { public static void main(String[] args) { String str1 = ""; String str2 = "java like "; System.out.println(str1.isEmpty()); System.out.println(str2.isEmpty()); } } |
true false |
package java like ; public class Test14 { public static void main(String[] args) { String str1 = null; System.out.println(str1.isEmpty()); } } |
Exception in thread "main" java.lang.NullPointerException at java like .Test14.main(Test14.java:8) |
package java like ; public class Test15 { public static void main(String[] args) { String str = null; if (str == null) System.out.println("String is null"); else if (str != null) System.out.println("String is not null"); } } |
String is null |
package java like ; public class Test14 { public static void main(String[] args) { String str1 = null; String str2 = "www.javapro.ir"; if (str1 == null || str1.isEmpty()) { System.out.println("String str1 is empty or null"); } else { System.out.println(str1); } if (str2 == null || str2.isEmpty()) { System.out.println("String str2 is empty or null"); } else { System.out.println(str2); } } } |
String str1 is empty or null www.javapro.ir |
دوره های آموزشی برنامه نویسی
انجام پروژه های برنامه نویسی
تدریس خصوصی برنامه نویسی
بیش از 7 سال از فعالیت جاواپرو میگذرد
جاواپرو دارای مجوز نشر دیجیتال از وزارت فرهنگ و ارشاد اسلامی است
جهت ارتباط مستقیم با جاواپرو در واتساپ و تلگرام :
09301904690
بستن دیگر باز نشو! |