void Java Keyword
The void is a keyword defined in the java programming
language. Keywords are basically reserved words which have specific meaning
relevant to a compiler in java programming language likewise the void keyword
indicates the following :
-- The void keyword in java programming language represents a null type.
--
Example to use the void keyword in a class:
public class Cla { public void doit(); { <statements> return; } } |


