1. 程式人生 > 其它 >原已經安裝好的nginx 如何新增一個未被編譯安裝的模組

原已經安裝好的nginx 如何新增一個未被編譯安裝的模組

public class Demo03 {
public static void main(String[] args) {
//整數拓展: 進位制 二進位制0b 十進位制 八進位制0 十六進位制0x
int i = 10;
int i2 = 010;//八進位制0
int i3 = 0x10;//十六進位制0x

System.out.println(i);
System.out.println(i2);
System.out.println(i3);

//========================================================
System.out.println("//========================================================");
//浮點數拓展 銀行業務怎麼表示
float f = 0.1f;
double d = 1.0/10f;
System.out.println(f==d);
System.out.println(f);
System.out.println(d);
float d2 = 332255555554f;
double d1 = d2+1f;
System.out.println(d2==d1);
System.out.println(d2);
System.out.println(d1);
//========================================================
//字元拓展
char c1 = 'a';
char c2 = '中';
System.out.println(c1);
System.out.println((int)c1);//強制轉換

System.out.println(c2);
System.out.println((int)c2); //強制轉換
//所有的字元本質還是數字
//編碼 unicode 表97=a 65=A 2位元組 65536
char c3 = '\u0067';
System.out.println(c3);//u0067=g
//轉移字元
// \t 製表符
// \n 換行
System.out.println("Hello\nworld!");
System.out.println("//========================================================");
String sa = new String("hello world");
String sb = new String ("hello world");
System.out.println(sa==sb);
String sc = "hello world";
String sd = "hello world";
System.out.println(sc==sd);
//物件 從記憶體分析
//布林值拓展
boolean flag = true;
if (flag == true){}//新手
if (flag){}//老手
//less is more! 程式碼要精簡易讀

}
}