常用類的使用方法

2021-07-24 18:41:46 字數 3362 閱讀 6275

常用類的使用方法 :

nterger:整數型別

1、屬性。

**:

system.out.println(「integer.max_value: 」 + integer.max_value );

結果為:integer.max_value: 2147483647

2、建構函式。

**:

integer i = new integer(「1234」);

生成了乙個值為1234的integer物件。

3、方法。

說明:

1. 所有方法均為public;

2. 書寫格式:[修飾符] 《返回型別》 《方法名([引數列表])>

如: static int parseint(string s) 表示:此方法(parseint)為類方法(static),返回型別為(int),方法所需引數為string型別。

**:

integer i = new integer(1234);

system.out.println(「i.compareto: 」 + i.compareto(new integer(123)) );

結果為:i.compareto: 1

**:

string s1 = new string(「1010」);

system.out.println(「integer.parseint(string s, int radix): 」 + integer.parseint(s1,2) );

結果為:integer.parseint(string s, int radix): 10

**:

int i1 = 54321;

system.out.println(「integer.tostring(int i, int radix): 」 + integer.tostring(i1,16) );

結果為:integer.tostring(int i, int radix): d431

static int max_value:返回最大的整型數;

static int min_value:返回最小的整型數;

static class type :返回當前型別。

例子:

integer(int value) :通過乙個int的型別構造物件;

integer(string s) :通過乙個string的型別構造物件;

例子:

bytevalue():取得用byte型別表示的整數;

int compareto(integer anotherinteger) :比較兩個整數。相等時返回0;小於時返回負數;大於時返回正數。

例子:

int compareto(object o) :將該整數與其他類進行比較。如果o也為integer類,進行方法2 的操作;否則,丟擲classcastexception異常。

static integer decode(string nm) :將字串轉換為整數。

double doublevalue() :取得該整數的雙精度表示。

boolean equals(object obj) :比較兩個物件。

float floatvalue() :取得該整數的浮點數表示。

static integer getinteger(string nm) :根據指定名確定系統特徵值。

static integer getinteger(string nm, int val) :上面的過載。

static integer getinteger(string nm, integer val) :上面的過載。

int hashcode() :返回該整數型別的雜湊表碼。

int intvalue() : 返回該整型數所表示的整數。

long longvalue() :返回該整型數所表示的長整數。

static int parseint(string s) :將字串轉換成整數。s必須是時進製數組成,否則丟擲numberformatexception異常。

static int parseint(string s, int radix) :以radix為基數radix返回s的十進位制數。所謂的基數,就是「幾進製」。

例子:

short shortvalue() :返回該整型數所表示的短整數。

static string tobinarystring(int i) :將整數轉為二進位制數的字串。

static string tohexstring(int i) :將整數轉為十六進製制數的字串。

static string tooctalstring(int i) :將整數轉為八進位制數的字串。

string tostring() :將該整數型別轉換為字串。

static string tostring(int i) :將該整數型別轉換為字串。不同的是,此為類方法。

static string tostring(int i, int radix) :將整數i以基數radix的形式轉換成字串。

例子:

static integer valueof(string s) :將字串轉換成整數型別。

static integer valueof(string s, int radix) :將字串以基數radix的要求轉換成整數型別。

float:實數型別

1、屬性。

static float max_value : 返回最大浮點數,在不同硬體平台中由float.intbitstofloat(0x7f7fffff)計算得出。

static float min_value : 返回最小浮點數,在不同硬體平台中由float.intbitstofloat(0x1)計算得出。

static float nan : 表示非數值型別的浮點數,在不同硬體平台中由

float.intbitstofloat(0x7fc00000)計算得出。

static float negative_infinity:返回負無窮浮點數,在不同硬體平台中由float.intbitstofloat(0xff800000)計算得出。

static float positive_infinity :返回正無窮浮點數,在不同硬體平台中由float.intbitstofloat(0x7f800000)計算得出。

static class type :返回當前型別。

2、建構函式。

float(double value) :以double型別為引數構造float物件。

float(float value) :以float型別為引數構造float物件。

float(string s) :以string型別為引數構造float物件。

JAVA常用類的使用方法

interger 整數型別 屬性。static int max value 返回最大的整型數 static int min value 返回最小的整型數 static class type 返回當前型別。例子 system.out.println integer.max value integer....

vbs類的使用方法

vbs類的使用方法 類的結構 class 類名稱 end class 呼叫方法 set myclass new 類名稱 中間類裡面的 類模組的事件過程。private sub class initialize 這裡寫上類例項化的時候執行的 end sub private sub class term...

FindTask類使用方法

findtask類特點 支援多圖層查詢 支援字段查詢 只能進行屬性查詢,不能進行空間查詢 不能指定返回字段,只能返回 displayfieldname string,feature graphic,foundfieldname string,layerid number,layername stri...