Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How come this piece of code shows compiling error-void is an invalid type for the variable test

public class Tester{
        public static void main(String[] args){
           static void test(String str){
         if (str == null | str.length() == 0) {
            System.out.println("String is empty");
         } 
         else {
            System.out.println("String is not empty");
         }}
       test(null);   
share|improve this question
Move your test method out of the main method – Prince John Wesley Feb 2 '12 at 11:38
DO NOT compare Strings with ==, rather with .equals(). Strings Re objects, and if you want to compare the value of objects you need .equals(), otherwise you are comparing references. – Hidde Feb 2 '12 at 12:01
thanks ,will do that – coderaider Feb 2 '12 at 12:07
1  
if one of the operands is null == works and you should use it because if your str is null, str.equals(null) will throw a NullPointerException -1 to comment – shift66 Feb 2 '12 at 12:08

closed as too localized by casperOne May 22 '12 at 13:08

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

5 Answers

You're trying to declare one method (test) within another method (main). Don't do that. Move test() to be in the class directly:

public class Tester{
  public static void main(String[] args) {
    test(null); 
  }

  static void test(String str) {
    if (str == null | str.length() == 0) {
      System.out.println("String is empty");
    } else {
      System.out.println("String is not empty");
    }
  }
}

(Note that I've also fixed up the indentation and whitespace. There are various conventions you can use, but you should be consistent and rather clearer than the code in your question showed.)

share|improve this answer
thank you ,clearing up the concept and about the code conventions – coderaider Feb 2 '12 at 12:06

You can not declare a method inside another method. Put off test from main. And you also can't call a method from the class. test(null); must be inside a method, say main.

public class Tester{
        public static void main(String[] args){
            test(null);
        }

        static void test(String str){
         if (str == null | str.length() == 0) {
            System.out.println("String is empty");
         } 
         else {
            System.out.println("String is not empty");
         }
        }
share|improve this answer
thank you,got it – coderaider Feb 2 '12 at 12:09

Your method test is inside another method.

Just put test method outside of your main.

share|improve this answer
thank you ,got it – coderaider Feb 2 '12 at 12:11
public class Tester{

    public static void test(String str){
        if (str == null || str.length() == 0) {
            System.out.println("String is empty");
        }
        else {
            System.out.println("String is not empty");
        }
    }

    public static void main(String[] args){
        test(null);
    }

}

You also have to add the double or operand (||) in order to work properly without Null Pointer Exception Error.

share|improve this answer
yes,thanks missed that one – coderaider Feb 2 '12 at 12:10

You are declaring test method inside main method. So, separate the test method from main.

public class Tester
{
    public static void test(String str)
    {
        if (str == null || str.length() == 0)
        {
            System.out.println("String is empty");
        }
        else
        {
            System.out.println("String is not empty");
        }
    }

    public static void main(String[] args)
    {
        test(null);
    }
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.