Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delphi data structures

I maybe need to do a project in Delphi and are a beginner in that field. Currently, I am searching the net for ressources and get confused because there are so few resource sites.

First of: can you give me some good websites with resources for Delphi I missed so far?

I was also searching for data structures in Delphi and was wondering if there are cool classes like an ArrayList in Java or something like that?

like image 354
Marco Avatar asked Nov 04 '09 09:11

Marco


2 Answers

exist many resources for a Delphi beginner, see theses questions in StackOverflow

  • Where can I find good beginner-level Delphi tutorials online?
  • Delphi = Pascal? Resources for Learning?
  • Learning Delphi
  • Delphi resources for existing .NET developer.
  • What’s the best Delphi book for a newbie?

A good book about data structures in Delphi is tomes of delphi: algorithms and data structures

alt text
(source: boyet.com)

I think wich the ArrayList Class in Java is very similar to the Generics list ( TList< T> ) introduced in delphi 2009. you can check also the TList Class in delphi.

Bye.

like image 98
RRUZ Avatar answered Sep 17 '22 17:09

RRUZ


I think DelphiFeeds is a good starting point. There are links to many other Delphi websites including TorryNet where you can find many open source components.

As for structures look at TStrings/TStringList and TList. I use them very often.

For other classes and functions look at Delphi Basics. There are descriptions and code examples.

like image 42
Michał Niklas Avatar answered Sep 20 '22 17:09

Michał Niklas