J
J Leonard
What is the difference between 'boolean' the built-in type and
'java.lang.Boolean' the class?
When would you use one and not the other? I have a multi-dimensional
array representing the possibilities inside of cells in a Sudoku
puzzle and I am representing each of them as boolean values.
At the moment I'm using the built-in boolean. I'd like to know the
difference between these 2 forms.
J Leonard
'java.lang.Boolean' the class?
When would you use one and not the other? I have a multi-dimensional
array representing the possibilities inside of cells in a Sudoku
puzzle and I am representing each of them as boolean values.
At the moment I'm using the built-in boolean. I'd like to know the
difference between these 2 forms.
J Leonard