作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个类:User 和 UserDto。它们很相似,例如:
User {
int id;
get\set}
UserDto{
int id;
get\set}
我有一个方法,我们可以称之为 doSmth()。有没有一种方法可以使此方法与两个此类一起作为输入参数(如 doSmth(User user)\doSmth(UserDto user))而不重载它?
我尝试使用像这样的泛型
public <T extends User & UserDto> void doSmth(T user){
System.out.println(user.getId);
}
但是这不起作用。例如,方法执行简单的事情,例如
最佳答案
有。创建一个声明 anOperation
方法的接口(interface) IUser
,使 User
和 UserDto
实现相同的接口(interface),然后doSmth(IUser)
可以接受 User
和 UserDto
调用方法 anOperation
关于java - java中扩展多个类的泛型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56544465/
我是一名优秀的程序员,十分优秀!