Java教程

Demo01

本文主要是介绍Demo01,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

/**

  • Demo01
  • 描述:

*/
public class Demo01 {
public static void main(String[] args) {
//整数拓展: 进制 二进制0b 十进制0 八进制0x
int i = 10;
int i2 = 010;
int i3 = 0x10;
System.out.println(i);

    System.out.println(i2);

    System.out.println(i3);


    //浮点数拓展
    float f = 0.1f;
    double d = 1.0/10;
    System.out.println(f==d);

    float t1 = 344224;
    float t2 = t1+1;
    System.out.println(t1==t2);

    char a1 = 'f';
    char a2 = '年';
    System.out.println(a1);
    System.out.println(a2);
    System.out.println((int)a1);
    System.out.println((int)a2);

    char a3 = '\u0061';
    System.out.println(a3);

    //转义字符
    System.out.println("hello\tworld");
    System.out.println("hello\nworld");

    String s1 = new String("hello world");
    String s2 = new String("hello world");
    System.out.println(s1==s2);


    String s3 = "hello world";
    String s4 = "hello world";
    System.out.println(s3==s4);

}

}

这篇关于Demo01的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!