java

当前位置:中华考试网 >> java >> java基础 >> 文章内容

java入门教程:数据类型_Java对布尔型的说明

来源:中华考试网  [2016年4月23日]  【

对布尔型的说明

  如果你有编程经验,了解布尔型,请跳过下面的教程,下面的教程针对只有C语言基础的读者(C语言没有布尔型)。

  在C语言中,如果判断条件成立,会返回1,否则返回0,例如:

#include 

int main(){

    int x = 100>10;

    int y = 100<10;

    printf("100>10 = %d\n", x);

    printf("100<10 = %d\n", y);

    return 0;

}

  运行结果:

  100>10 = 1

  100<10 = 0

  但是在Java中不一样,条件成立返回 true,否则返回 false,即布尔类型。例如:

public class Demo {

    public static void main(String[] args){

        // 字符型

        boolean a = 100>10;

        boolean b = 100<10;

        System.out.println("100>10 = " + a);

        System.out.println("100<10 = " + b);

        

        if(a){

            System.out.println("100<10是对的");

        }else{

            System.out.println("100<10是错的");

        }

    }

}

  运行结果:

  100>10 = true

  100<10 = false

  100<10是对的

  实际上,true 等同于1,false 等同于0,只不过换了个名称,并单独地成为一种数据类型。

责编:ljnbset
  • 会计考试
  • 建筑工程
  • 职业资格
  • 医药考试
  • 外语考试
  • 学历考试