本文介绍了外部排序Java的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Java是否没有实现内置的外部排序算法的特定原因?
Is there a specific reason why Java does not have an in-built external sort algorithm implemented ?
推荐答案
因为JDK仅包含最常用的组件.
Because the JDK contains only the mostly used components.
任何外部框架内容都是一样的.为什么它不是直接内置的?
It is the same thing with any external framework content. Why isn't it directly built-in ?
只是因为它不需要内置.而且因为它不是由同一个人开发的.
Simply because it doesn't need to be built-in. And because it's not developed by the same people.
但是您仍然可以使用一个外部框架或一个可以帮助您的外部库.
But still you can use an external framework, or a library which will help you with that.
资源:
这篇关于外部排序Java的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!