在Java中将a转换为a的最被接受的方法是什么?booleanint
boolean
int
int myInt = myBoolean ? 1 : 0;
^^
PS:真 = 1 和假 = 0
int val = b? 1 : 0;