问题描述
关于如何从import java.util.ArrayList;
import java.util.List;
import java.util.function.Function;
public class TestGeneric {
// I want to create a list of Functions,and these Functions can have different input/output types than one another.
private List<Function<? extends Number,? extends Number>> functions;
public TestGeneric() {
functions = new ArrayList<>();
}
public void addFunction(Function<? extends Number,? extends Number> function) {
functions.add(function);
}
public void main(String[] args) {
TestGeneric testGeneric = new TestGeneric();
Function<Integer,Integer> hundredTimes = new Function<Integer,Integer>() {
@Override
public Integer apply(Integer integer) {
return integer * 100;
}
};
functions.add(hundredTimes);
Function<Double,Double> tenTimes = new Function<Double,Double>() {
@Override
public Double apply(Double o) {
return 10.0 * o;
}
};
functions.add(tenTimes);
System.out.println(functions.get(0).apply(Integer.valueOf(10)));
}
}
获取刷新令牌的问题,我犹豫不决,但似乎找不到方法。
在iOS上,等效值为FirebaseAuth
。非常感谢您的帮助。
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)