Void & void Void用在泛型

Posted junglecat

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Void & void Void用在泛型相关的知识,希望对你有一定的参考价值。

public Void setStr(String key,String value)throws Exception{

RetryTemplate retryTemplate=initRetryTemplate();
retryTemplate.execute(new RetryCallback<Void,Exception>() {
int i = 0;
// 重试操作
@Override
public Void doWithRetry(RetryContext retryContext) throws Exception {
log.info("retry count: {}", retryContext.getRetryCount());
stringRedisTemplate.opsForValue().set(key,value);
// return len(i++);
return null;
}
});
return null;
}















以上是关于Void & void Void用在泛型的主要内容,如果未能解决你的问题,请参考以下文章

在泛型Integer输入String

Java 将泛型类型与 Void 进行比较

C 中的泛型编程 - void*- const 正确性

C 语言泛型编程--quickSort实现

C# 泛型:如果 T 是返回类型,它也可以是 void 吗?如何将这些接口组合在一起?

如何比较 C++ 中的泛型结构?