生活随笔
收集整理的這篇文章主要介紹了
自学JAVA5.18
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
package com.ntru.demo.test;
import java.util.Scanner;
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");int i = 10;int i2 = 010;//八進制int i3 = 0x10;//十六進制System.out.println(i);System.out.println(i2);System.out.println(i3);//浮點數擴展// float 有限 離散 舍入誤差float f = 0.1f;//0.1double d = 1.0/10;//0.1System.out.println(f);System.out.println(f==d);System.out.println(d);//字符擴展char c1 = 'a';char c2 = '中';System.out.println(c1);System.out.println((int)c1);//強制轉換System.out.println(c2);System.out.println((int)c2);//強制轉換//所有的字符本質還是數字//編碼 Unicode 2字節 65536(97 = a 65 = A)char c3 = '\u0061';System.out.println(c3);//a//轉義字符// \t 制表符// \t 換行System.out.println("Hello\nWorld");System.out.println("---------------------------------");String sa = new String("helloworld");String sb = new String("helloworld");System.out.println(sa==sb);String sc = "helloworld";String sd = "helloworld";System.out.println(sc==sd);//對象 從內存分析//布爾值擴展boolean flag = true;if (flag==true){//新手 if (flag){} 默認為真}}
}
總結
以上是生活随笔為你收集整理的自学JAVA5.18的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。