Data Type Java

public class Main {
  public static void main(String[] args) throws Exception {
    boolean b = true;
    int i = (b) ? 1 : 0;
  }
}