作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个返回void的函数
public interface IProductService {
void delete(String id);
}
通用方法
public interface IRequestHandler<C , R> {
R handler(C c);
Class<C> commandType();
}
通用接口(interface)的实现
@Singleton
public record DeleteProductCommandHandler(IProductService iProductService)
implements IRequestHandler<DeleteProductCommand, Void> {
@Override
public Void handler(DeleteProductCommand deleteProductCommand) {
return iProductService.delete(deleteProductCommand.id);
}
@Override
public Class<DeleteProductCommand> commandType() {
return DeleteProductCommand.class;
}
}
如何在 IRequestHandler<DeleteProductCommand, Void>
中使用 void这样我就可以从 iProductService.delete(deleteProductCommand.id);
映射 void
最佳答案
只返回null
:
@Override
public Void handler(DeleteProductCommand deleteProductCommand) {
iProductService.delete(deleteProductCommand.id);
return null;
}
更新 IProductService::delete
方法以返回有意义的内容,例如像 Collection::remove
这样的 boolean
值:
public interface IProductService {
boolean delete(String id);
}
@Singleton
public record DeleteProductCommandHandler(IProductService iProductService)
implements IRequestHandler<DeleteProductCommand, Boolean> {
@Override
public Boolean handler(DeleteProductCommand deleteProductCommand) {
return iProductService.delete(deleteProductCommand.id);
}
@Override
public Class<DeleteProductCommand> commandType() {
return DeleteProductCommand.class;
}
}
关于java - Java 中的泛型无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70451216/
我是一名优秀的程序员,十分优秀!