logo

سلسلة جافا فارغة ()

ال فئة سلسلة جافا فارغة () تتحقق الطريقة مما إذا كانت سلسلة الإدخال فارغة أم لا. لاحظ أن فارغة هنا تعني أن عدد الأحرف الموجودة في السلسلة هو صفر.

إمضاء

التوقيع أو بناء جملة أسلوب السلسلة isEmpty () موضح أدناه:

نوع الدمج
 public boolean isEmpty() 

عائدات

صحيح إذا كان الطول 0 وإلا فسيكون خطأ.

منذ

1.6

التنفيذ الداخلي

 public boolean isEmpty() { return value.length == 0; } 

مثال على طريقة Java String isEmpty()

اسم الملف: StringIsEmptyExample.java

substring_index في SQL
 public class IsEmptyExample{ public static void main(String args[]){ String s1=''; String s2='javatpoint'; System.out.println(s1.isEmpty()); System.out.println(s2.isEmpty()); }} 
اختبره الآن

انتاج:

 true false 

Java String isEmpty() طريقة المثال 2

اسم الملف: StringIsEmptyExample2.java

 public class IsEmptyExample2 { public static void main(String[] args) } 

انتاج:

 String s1 is empty Javatpoint 

فارغة مقابل. سلاسل فارغة

في وقت سابق من هذا البرنامج التعليمي، ناقشنا أن السلاسل الفارغة تحتوي على صفر أحرف. ومع ذلك، ينطبق الشيء نفسه على سلسلة فارغة أيضًا. السلسلة الفارغة هي سلسلة ليس لها قيمة.

 String str = ''; // empty string String str1 = null; // null string. It is also not containing any characters. 

الطريقة isEmpty() غير مناسبة للتحقق من السلاسل الفارغة. المثال التالي يوضح نفس الشيء.

ب زائد شجرة

اسم الملف: StringIsEmptyExample3.java

 public class StringIsEmptyExample3 { // main method public static void main(String argvs[]) { String str = null; if(str.isEmpty()) { System.out.println('The string is null.'); } else { System.out.println('The string is not null.'); } } } 

انتاج:

 Exception in thread 'main' java.lang.NullPointerException at StringIsEmptyExample3.main(StringIsEmptyExample3.java:7) 

هنا، يمكننا استخدام عامل التشغيل == للتحقق من السلاسل الفارغة.

اسم الملف: StringIsEmptyExample4.java

0.2 ككسر
 class StringIsEmptyExample4 { // main method public static void main(String argvs[]) { String str = null; if(str == null) { System.out.println('The string is null.'); } else { System.out.println('The string is not null.'); } } } 

انتاج:

 The string is null. 

سلاسل فارغة

السلاسل الفارغة هي تلك السلاسل التي تحتوي على مسافات بيضاء فقط. تعد طريقة isEmpty () مفيدة جدًا للتحقق من السلاسل الفارغة. النظر في المثال التالي.

اسم الملف: StringIsEmptyExample5.java

 public class StringIsEmptyExample5 { // main method public static void main(String argvs[]) { // a blank string String str = ' '; int size = str.length(); // trim the white spaces and after that // if the string results in the empty string // then the string is blank; otherwise, not. if(size == 0) { System.out.println('The string is empty. 
'); } else if(size > 0 && str.trim().isEmpty()) { System.out.println('The string is blank. 
'); } else { System.out.println('The string is not blank. 
'); } str = ' Welcome to JavaTpoint. '; size = str.length(); if(size == 0) { System.out.println('The string is empty. 
'); } if(size > 0 && str.trim().isEmpty()) { System.out.println('The string is blank. 
'); } else { System.out.println('The string is not blank. 
'); } } } 

انتاج:

 The string is blank. The string is not blank.