八大型別及拓展

2022-06-22 19:48:10 字數 1847 閱讀 5851

byte: 占用 乙個位元組: 取值範圍(-128~127)

short: 占用2個位元組: 取值範圍(-32768~32767)

int : 占用4個位元組

long : 占用8個位元組: 對long 型變數賦值要在其後邊加 l或l :

float: 占用4個位元組: 對float型賦值要在其後邊加 f 或f

double: 占用8個位元組: 對於double 型賦值

char : 占用2個位元組 對char 型賦值 需加雙引號

boolean 占用乙個位元組: 只有兩種值 (true 或false)

public class 八大型別 

}

點選查詢轉義字元表

public class 資料拓展 {

public static void main(string args){

​//整數進製 二進位制0b 十進位制 八進位制0 十六進製制0x

​int s1=10;

int s2=010;     //八進位制

int s3=0x10;    //十進位制

int s4=011;

​system.out.println(s1);

system.out.println(s2);

system.out.println(s3);

system.out.println(s4);​​

system.out.println("********************==");

​//浮點數拓展   最好不要用浮點數比較

​float b=0.1f;

double c=1.0/10;

​system.out.println(b==c); //此處==表示判斷,結果顯示false

​float d=21212121121f;

float f=d+1;

​system.out.println(d==f);  //結果顯示正確

​//原因:浮點數 有限 離散 捨入誤差 大約 接近但不等於

//原因:浮點數 有限 離散 捨入誤差 大約 接近但不等於

//原因:浮點數 有限 離散 捨入誤差 大約 接近但不等於

​//銀行等比較業務bigdecimal類進行表示

​system.out.println("********************==");

​//字元拓展 強制轉換

​char c1 ='中';

char c2 ='a';

​system.out.println(c1);

system.out.println((int)c1);  //強制轉換

system.out.println(c2);

system.out.println((int)c2);

​//編碼 unicode表(97=a 65=a) 表示2位元組 字的本質是字元

​system.out.println("********************==");

​//轉義字元 \t (tab作用) \n(換行)

​system.out.println("hello\tworld");

system.out.println("hello\nworld"); //換行

​system.out.println("********************==");

​//思考:物件 記憶體分析

​string sa ="hello wrold";

string sb ="hello wrold";

​system.out.println(sa==sb);  //正確

PATH和八大請求型別

一 關於patch http的 rfc2616 原本定義用於上傳資料的方法只有post和put,但是考慮到兩者的不足,就增加了patch方法。用patch方法,預設是以x www form urlencoded的contenttype來傳送資訊,並且資訊內容是放在request的body裡。put方...

02 八大浪費型別

基本含義 通常而言,對增加產品價值 服務價值沒有貢獻的資源投入 生產投入都是浪費。從以下幾個方面理解 1 價值 滿足客戶真實需求的產品 服務才有價值 2 不增加價值的資源投入 生產投入,是浪費 3 儘管增加了產品或服務的價值,所用的資源超過了所必需的界限,也是浪費 作業內容的3種分類 1 增值作業 ...

搞軟體的必知 行業八大類軟體

1 資訊管理系統 mis 2 辦公自動化 oa 3 客戶關係系統 crm 4 鏈系統 scm 5 電子商務和電子政務 ec e gov 6 人力資源管理系統 hrm 7 財務管理系統 8 資訊門戶 eip erp是英文enterprise resource planning 企業資源計畫 的簡寫。是...