gpt4 book ai didi

java - 通用列表和 for-each 循环

转载 作者:行者123 更新时间:2023-11-29 04:29:27 27 4
gpt4 key购买 nike

<分区>

我正在使用通用类 TestThrows< T >带有返回通用列表的包含函数。我的问题是我无法编译这个程序,它抛出以下错误:

类型不匹配:无法从元素类型 Object 转换为 Throwable

public class Test
{
public static void main( String[] args )
{
TestThrows testThrows = new TestThrows();

// compile error on the next line
for ( Throwable t : testThrows.getExceptions() )
{
t.toString();
}
}

static class TestThrows< T >
{
public List< Throwable > getExceptions()
{
List< Throwable > exceptions = new ArrayList< Throwable >();
return exceptions;
}
}
}

我不确定为什么会出现此错误,因为我正在使用通用列表?

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