When attempting to compile Java code, you might encounter the error message "'void' type not allowed here". This error occurs when you try to assign a void value to a non-void variable or return a value from a method that is declared as void.
Cause of the Error in the Given Code
In the provided code, the printPoint method is declared as void, meaning it doesn't return any value. However, the code attempts to print the returned value of printPoint, which causes the error.
What Does the Error Mean?
The error message "void type not allowed here" indicates that the code is trying to assign a void value (the return value of the printPoint method) to a non-void variable or expression. Java doesn't allow void values to be stored in non-void variables or returned from methods that are not declared as void.
How to Fix the Issue
To resolve this error, remove the print statement that attempts to assign the void value returned by printPoint to a variable. Instead, call the printPoint method directly, without trying to capture its return value:
printPoint(blank);
The above is the detailed content of Why Am I Getting the "'void' Type Not Allowed Here" Error in Java?. For more information, please follow other related articles on the PHP Chinese website!