18 Eylül 2019 Çarşamba

Ints Sınıfı

asList metodu
List<Integer> döner.
Örnek
Şöyle yaparız.
int[] a = {23,31,11,9};

//copy int[] to double[]
double[] y=Doubles.toArray(Ints.asList(a));
constrainToRange metodu
C++'taki std:clamp() gibi çalışır. Açıklaması şöyle.
added  constrainToRange([type] value, [type] min, [type] max) methods which constrain the given value to the closed range defined by the min and max values. They return the value itself if it's within the range, the min if it's below the range and the max if it's above the range.
fromByteArray metodu
Big Endian çalışır. İlk byte register'ın MSB yani en sol tarafına yerleştirilir.
Elimizdeki değer şöyle olsun
3|2|1|0. 
Çıktı olarak şunu alırız
3|2|1|0. 

tryParse metodu
Integer veya null döner.
Örnek
Şöyle yaparız.
Integer myInt = Ints.tryParse(someString);
if (myInt != null) {
  ...
}
tryParse metodu - String + radix
Integer veya null döner.

Hiç yorum yok:

Yorum Gönder