[Google Guava]--Optional類
阿新 • • 發佈:2019-02-19
扯淡一下:
剛剛換了新工作,新的公司,新的同事,很好的夥伴們,都很喜歡;新的業務,新的技術,新的挑戰:開啟新的旅程,Fighting!
這陣子一直了解公司業務,看前輩們的程式碼,發現很多新的技巧,技術,學習好多;那麼先從第一個利器:Guava開始說起吧,今天來一張部落格,後面持續更新該方面的文章。
簡介:
Optional用於包含非空物件的不可變物件。 Optional物件,用於不存在值表示null。這個類有各種實用的方法,以方便程式碼來處理為可用或不可用,而不是檢查null值。
類宣告:
com.google.common.base.Optional<T>類的宣告:
@GwtCompatible(serializable=true)
public abstract class Optional<T>
extends Object
implements Serializable
類方法:
S.N. | 方法及說明 |
---|---|
1 | static <T> Optional<T> absent() 返回沒有包含的參考Optional的例項。 |
2 | abstract Set<T> asSet() 返回一個不可變的單集的唯一元素所包含的例項(如果存在);否則為一個空的不可變的集合。 |
3 | abstract boolean equals(Object object) 返回true如果物件是一個Optional例項,無論是包含引用彼此相等或兩者都不存在。 |
4 | static <T> Optional<T> fromNullable(T nullableReference) 如果nullableReference非空,返回一個包含引用Optional例項;否則返回absent()。 |
5 | abstract T get() 返回所包含的例項,它必須存在。 |
6 | abstract int hashCode() 返回此例項的雜湊碼。 |
7 | abstract boolean isPresent() 返回true,如果這支架包含一個(非空)的例項。 |
8 | static <T> Optional<T> of(T reference) 返回包含給定的非空引用Optional例項。 |
9 | abstract Optional<T> or(Optional<? extends T> secondChoice) 返回此Optional,如果它有一個值存在; 否則返回secondChoice。 |
10 | abstract T or(Supplier<? extends T> supplier) 返回所包含的例項(如果存在); 否則supplier.get()。 |
11 | abstract T or(T defaultValue) 返回所包含的例項(如果存在);否則為預設值。 |
12 | abstract T orNull() 返回所包含的例項(如果存在);否則返回null。 |
13 | static <T> Iterable<T> presentInstances(Iterable<? extends Optional<? extends T>> optionals) 從提供的optionals返回每個例項的存在的值,從而跳過absent()。 |
14 | abstract String toString() 返回此例項的字串表示。 |
15 | abstract <V> Optional<V> transform(Function<? super T,V> function) 如果例項存在,則它被轉換給定的功能;否則absent()被返回。 |
下面直接上程式碼。
Optional示例:
Optional<Integer> possible=Optional.of(6);
Optional<Integer> absentOpt=Optional.absent();
Optional<Integer> NullableOpt=Optional.fromNullable(null);
Optional<Integer> NoNullableOpt=Optional.fromNullable(10);
if(possible.isPresent()){
System.out.println("possible isPresent:"+possible.isPresent());
System.out.println("possible value:"+possible.get());
}
if(absentOpt.isPresent()){
System.out.println("absentOpt isPresent:"+absentOpt.isPresent()); ;
}
if(NullableOpt.isPresent()){
System.out.println("fromNullableOpt isPresent:"+NullableOpt.isPresent()); ;
}
if(NoNullableOpt.isPresent()){
System.out.println("NoNullableOpt isPresent:"+NoNullableOpt.isPresent()); ;
}
輸出:
possible isPresent:true
possible value:6
NoNullableOpt isPresent:true
public void testMethodReturn() {
Optional<Long> value = method();
if(value.isPresent()==true){
System.out.println("獲得返回值: " + value.get());
}else{
System.out.println("獲得返回值: " + value.or(-12L));
}
System.out.println("獲得返回值 orNull: " + value.orNull());
Optional<Long> valueNoNull = methodNoNull();
if(valueNoNull.isPresent()==true){
Set<Long> set=valueNoNull.asSet();
System.out.println("獲得返回值 set 的 size : " + set.size());
System.out.println("獲得返回值: " + valueNoNull.get());
}else{
System.out.println("獲得返回值: " + valueNoNull.or(-12L));
}
System.out.println("獲得返回值 orNull: " + valueNoNull.orNull());
}
private Optional<Long> method() {
return Optional.fromNullable(null);
}
private Optional<Long> methodNoNull() {
return Optional.fromNullable(15L);
}
輸出:
獲得返回值: -12 獲得返回值 orNull: null 獲得返回值 set 的 size : 1 獲得返回值: 15 獲得返回值 orNull: 15
Optional<Integer> possible = Optional.fromNullable(5); //建立允許null值的Optional
possible.isPresent();
possible.get(); // 5
possible.or(3)); // 5
possible.orNull(); // 5
possible.asSet(); // [5]
final Optional<Integer> possible1 = Optional.fromNullable(100);
Optional<Boolean> a = possible1.transform(new Function<Integer, Boolean>() {
@Override
public Boolean apply(Integer input) {
return 100 == input ? Boolean.TRUE : Boolean.FALSE;
}
});
a.get();// true
List<Optional<Integer>> list = new ArrayList<Optional<Integer>>();
for (int index = 10; index > 0; --index) {
Integer t;
if (0 == index % 2) {
t = index;
} else {
t = null;
}
list.add(Optional.<Integer>fromNullable(t));
}
Iterable<Integer> it = Optional.presentInstances(list);
Iterator iter= it.iterator();
while (iter.hasNext()) {
System.out.println(iter.next());
}
輸出:
//10
//8
//6
//4
//2