fork download
  1. public class Main {
  2. public static void testFun(String str) {
  3. if (str == null || str.length() == 0) {
  4. System.out.println("String is empty");
  5. } else {
  6. System.out.println("String is not empty");
  7. }
  8. }
  9. public static void main(String [] args) {
  10. testFun(null);
  11. }
  12. }
Success #stdin #stdout 0.06s 215488KB
stdin
Standard input is empty
stdout
String is empty