Java 泛型中的类型检查优点是如何体现的?

2019-01-03 00:07发布

使用泛型代码要比非泛型代码更有优势,下面是 java 官方教程对泛型其中一个优点的介绍:

“Stronger type checks at compile time.
A Java compiler applies strong type checking to generic code and issues errors if the code violates type safety. Fixing compile-time errors is easier than fixing runtime errors, which can be difficult to find.”

我希望知道的是:

1、在使用泛型时能在编译时被检测出的问题,在未使用泛型时是怎样的情况?即怎样才会出现这类上文中最后一句提到的不是更容易解决的运行时错误?(希望以代码举例)

2、Java 如何提供这种编译时的强类型检查(第一句)。

如能解决,十分感谢!

1条回答
我想做一个坏孩纸
2楼-- · 2019-01-03 00:11

问题已解决,因为这里好像不支持 MarkDown,所以不粘在这里了。

感兴趣的可以移步这里:https://www.cnblogs.com/backwords/p/9336714.html

当然如果你有更好的答案,一定不要吝啬哦~

查看更多
登录 后发表回答