DEV Community

Discussion on: How to use the var keyword in Java? Example Tutorial

Collapse
 
ryselis profile image
Karolis Ryselis

Java var is nothing like Python's def. def is used to declare a function or method.

Collapse
 
javinpaul profile image
javinpaul

Yeah, that's true, Java var is less powerful than Python def or even JavaScript var but it still useful on making your code elegant and concise.