string
三角函式
方法名功能描述
引數返回值
sin(num)
正弦double
double
cos(num)
余弦double
double
tan(num)
正切double
double
求整、絕對值
方法名功能描述
引數返回值
abs(num)
求絕對值
int、long、float、double
int、long、float、double
ceil(num)
向上求整
double
double
floor(num)
向下求整
double
double
round(num)
四捨五入
double、float
long、int
其他方法名
功能描述
引數返回值
log(num)
log以e為底,num的對數
double
double
log10(num)
log以10為底,num的對數
double
double
pow(x,y)
x的y次方
double
double
sqrt(num)
平方根double
double
cbrt(num)
立方根double
double
random()
隨機數(介於0.0與1.0之間,不等於1.0)
null
double
構造方法
方法名功能描述
引數string()
建立新的字串,表示為空字串null
string(byte bytes)
使用預設位元組碼解碼位元組陣列,構造新的字串
byte
string(byte bytes,charset charset)
使用指定位元組碼解碼位元組陣列,構造新的字串
byte,charset
string(byte bytes,int offset,int length)
使用預設位元組碼,從指定的位元組陣列的索引處開始,解碼一定長度的位元組陣列,構造新的字串
byte,int,int
string(byte bytes,int offset, int length, charset charset)
使用指定位元組碼,從指定的位元組陣列的索引處開始,解碼一定長度的位元組陣列,構造新的字串
byte,int,int,charset
string(char value)
將當前包含在字元陣列中的字元,分配到乙個新的字串
char
string(char value,int offset, int count)
將當前包含在字元陣列中的字元從指定的字元索引處開始,到一定的長度,分配到乙個新的字串
char,int,int
索引相關
方法名功能描述
引數返回值
charat(int index)
返回索引處的char值
intchar
indexof(int ch)
返回指定字串第一次出現在字串中的索引,若未查找到字元,返回-1
intint
indexof(string str)
string
intindexof(int ch,int fromindex)
返回指定字串第一次出現在字串中的索引,從指定的索引處開始檢索,若未查找到字元,返回-1
int,int
intindexof(string str,int fromindex)
string,int
intlastindexof(int ch)
返回指定字串最後一次出現在字串中的索引,若未查找到字元,返回-1
intint
lastindexof(string str)
string
intlastindexof(int ch,int fromindex)
返回指定字串最後一次出現在字串中的索引,從指定的索引處開始檢索,若未查找到字元,返回-1
int,int
intlastindexof(string str, int fromindex)
string,int
int
比較(字典順序)
方法名功能描述
引數返回值
compareto(string anotherstring)
按字典順序比較兩個字串,返回兩組字串之間差值(ascii),第二種方法忽略大小寫
string
intcomparetoignorecase(string str)
string
int
其他
js常用API彙總
typeof 檢測資料型別 string 轉換成字串 parseint 解析出乙個string或number的整數部分 parsefloat 解析出乙個string的浮點數部分 number 把乙個string解析為number blooean 轉換成布林型別 nan,undefined,null,...
js常用API彙總
typeof 檢測資料型別 string 轉換成字串 parseint 解析出乙個string或number的整數部分 parsefloat 解析出乙個string的浮點數部分 number 把乙個string解析為number blooean 轉換成布林型別 nan,undefined,null,...
Kafka常用API命令彙總
kafka常用api命令彙總 0 啟動kafka集群 kafka server start.sh d config server.properties1 列出集群裡的所有主題。kafka topics.sh zookeeper node01 2181,node02 2181,node03 2181 ...