1. 程式人生 > 其它 >【每日一題】【樹的dfs遞迴,返回多次,注意都遍歷完後才最終返回】2022年1月6日-112. 路徑總和

【每日一題】【樹的dfs遞迴,返回多次,注意都遍歷完後才最終返回】2022年1月6日-112. 路徑總和

  • 由於Java是強型別語言,所以要進行有運算的時候,需要用到型別轉換。

低--------------------------------------------------------------------->高

byte,short,char--->int--->long---->float---->double

  • 運算中,不同型別的資料先轉化為同一型別,然後再計算。

  • 強制型別轉換

  • 自動型別轉換

        int i = 128;
    byte b = (byte)i;//記憶體溢位

    //強制轉換 (型別)變數名 高--->低
    //自動轉換 低---->高
    System.out.println(i);//128
    System.out.println(b);//-128

    /*
    注意點:
    1.不能對布林值進行轉換
    2.不能把物件型別轉換為不相干的型別
    3.在把高容量轉換到低容量的時候,強制轉換
    4.轉換的時候可能存在記憶體溢位或者精度問題。
    */
    System.out.println("=====================");
    System.out.println((int)23.7);//23
    System.out.println((int)-45.89f);//-45

    System.out.println("=====================");
    char c = 'a';
    int d = c+1;
    System.out.println(d);//98
    System.out.println((char)d);//b
public class Demo02 {
public static void main(String[] args) {
//操作比較大的數的時候,注意溢位問題
//JDK7新特性,數字之間可以用下劃線分割
int money = 10_0000_0000;
int years = 20;
int total = money*years;
long total2 = money*years;
System.out.println(total);//-1474836480,計算的時候溢位了
System.out.println(total2);//-1474836480,預設是int,轉換之前已經存在問題了

long total3 = money*((long)years);//先把一個數轉換為long
System.out.println(total3);//20000000000

long i = 100L;
long j = 100l;//應該用大寫L結尾
}
}