gpt4 book ai didi

java - 了解 Java 泛型方法

转载 作者:搜寻专家 更新时间:2023-10-31 08:12:16 26 4
gpt4 key购买 nike

我正在尝试理解 Java 中的泛型方法。给定以下代码:

public class GenericTest {

interface Shape {
public long area();
}

public static class Triangle implements Shape
{
private long base, height;
public long area() { return (base * height) / 2; }
}

public static class Rectangle implements Shape
{
private long width, height;
public long area() { return width * height; }
}

public <T extends Shape> long area1(T shape)
{
return shape.area();
}

public long area2(Shape shape)
{
return shape.area();
}

}

我不明白/不明白为什么我应该使用/实现 area1 而不是 area2(反之亦然)。我错过了什么吗?这两种方法不是做同样的事情吗?

这让我对 Java 中的泛型有点困惑

最佳答案

在您的示例中,由于 T 类型参数未用于任何返回值,因此没有区别。

但是,假设您有以下方法:

public <T extends Shape> T movedShape1(T shape) {
return shape.move();
}

public Shape movedShape2(Shape shape) {
return shape.move();
}

在这里您可以看到使用 movedShape1() 的明显优势。您将获得更具体的返回值类型,而不会失去任何类型安全性。

关于java - 了解 Java 泛型方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16656517/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com