哪里可以找到好的delphi库?
我使用的是delphi6,它缺少以下功能:
- 库对象,
- 列表对象(看起来像TList,TStringList足够好吗?)
- 算法库(如排序),
- 模板库(如STL
- 动态语言功能或GC)。
- 等等。
我怎样才能找到这个东西?
I'm using delphi6, and it lacks the following abilities:
- a library object,
- a list object(looks like TList,TStringList is good enough?)
- a algorithm library(like sort,)
- template library like STL
- dynamic language feature or GC.
- and so on.
how can I find this things?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
尝试Jedi 代码库。 容器类和排序算法有很好的替代品。 我认为 Delphi 6 没有 GC 或类似 STL 的库。Delphi
6 落后于时代,请检查 Delphi 2009 或至少 Turbo Delphi
Try Jedi Code Library. There are good replacements for container classes and sorting algorithms. I don't think there is GC or STL-like library for Delphi 6.
Delphi 6 is behind the times, check Delphi 2009 or at least Turbo Delphi
有一个DeCAL,声称与STL类似。 然而,我从未真正测试过它。
There is DeCAL, which claims to be similar to the STL. I've never really tested it, however.
网上有许多第三方 Delphi 库、组件和源代码示例。
我脑子里只有几个
JEDI http://www.delphi-jedi.org/
和
一个 Delphi 超级页面 http://delphi.icm.edu.pl/
There are many third party delphi libraries, components and source code examples on the net.
Just a couple off the top of my head
JEDI http://www.delphi-jedi.org/
and
a Delphi super page http://delphi.icm.edu.pl/
作为 DeCAL 的替代方案(这是没有泛型的 TList 的一个非常好的替代方案),我将建议 EZSDL by Julian M Bucknall。
As an alternative to DeCAL (Which is a very good alternative to TList without generics), I will propose EZSDL by Julian M Bucknall.
与 Delphi 2007 for Win32 和 RAD Studio 2007 兼容的主要第三方组件列表,作者:Andreano Lanusse,位于 http:// edn.embarcadero.com/article/37455
List of main third party components compatible with Delphi 2007 for Win32 and RAD Studio 2007 by Andreano Lanusse at http://edn.embarcadero.com/article/37455
前三个位于 VCL 中,请查看帮助和源代码。 Delphi 6 没有泛型,因此不能与模板库一起使用。 并且没有垃圾收集。
如果您想在 Delphi 中编程,请忘记它们。 如果没有,请寻找另一种语言。
The first three are in the VCL, take a look in the help and the sources. Delphi 6 has no generics, so cannot be used with a template library. And no garbage collection.
If you want to program in Delphi, forget about them. If not, find another language.