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);
testmethod out of themainmethod – Prince John Wesley Feb 2 '12 at 11:38