在Java中将boolean转换为int的最常用方法是什么?

最佳答案

int myInt = myBoolean ? 1 : 0;

^^

PS:true = 1,false = 0

07-24 20:35