我在互联网上搜索但我没有找到供应商的原始专业化的任何具体示例。什么时候应该使用。我认为有一个原因,IntSupplier保证返回值是int而不是供应商。如果我们使用ParameterizedType它也保证。它会影响性能吗?在现实世界中是否有任何使用供应商的原始专业化的例子?
1. IntSupplier intSupplier = () -> 20;
2. Supplier integerSupplier = () -> 20; //can be int or any type
3. Supplier<Integer> integerSupplier = () -> 20;