Skip to content
Advertisement

Convert boolean to int in Java

What is the most accepted way to convert a boolean to an int in Java?

Advertisement

Answer

int myInt = myBoolean ? 1 : 0;

^^

PS : true = 1 and false = 0

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement