tags:

views:

331

answers:

7

Hi,

I'm a C++-Programmer. But now i have to learn Pascal/Pascal. Are there any websites, documents around that can teach someone with my knowledge the difference?

+4  A: 

It shouldn't be too difficult to pick up. C's design was influenced by ALGOL and Pascal, so the semantics and logical flow are going to be pretty familiar. You can get an overview of the differences between basic Pascal and basic C here.

But you tagged this as Delphi and you mentioned C++, which implies that you'll need information on OOP techniques. Try this article or this one, which compare object-oriented programming in Delphi with C++ and other languages. Both are a bit dated, but most of the basic information in them still applies today.

If you have any specific questions about language features, feel free to ask them here, and welcome to Stack Overflow!

Mason Wheeler
+1  A: 

You might consider this post on beginner guides to Delphi. It has some good links included that may be rather simplistic for you, but can still take you a long way.

Tom
+3  A: 

You can check Essential Pascal written by Marco Cantù, is a introduction to the Pascal programming language. you can download a free copy from here.

alt text

Another excellent site for beginners, is Delphi Basics, this web site provides help and reference for the fundamentals of the Delphi language. It gives an introduction to the Delphi Object Oriented Language for newcomers.

RRUZ
+1  A: 

Marco Cantu (mentioned in several answers) also has a book series called "Mastering Delphi." It is a great (maybe only) top to bottom resource. Everything Delphi is in it. But the last edition is for 2005. Four versions of Delphi have been released since. There are a couple of update sheets available from Marco's website (D2006 was mostly a bug fix of 2005). And Marco also has the Handbook series, but that is aimed at people who already know Delphi and are looking for help on the newest improvements.

Personally, Delphi is my favorite language. I hope you enjoy it!

Frank Luke
+2  A: 

A website that helped me a lot when I learned Delphi was http://www.delphibasics.co.uk/. I still use it. It presents common methods in a nice way.

johnny
+1  A: 

your name sounds german so you might wanne check these pages out delphipraxis

it's not really a comparison for cpp and delphi/pascal but you'll find a lot of information

due to me being a new user i'm not able to post a second link. but search google for delphi forum..

Dimitri
FTR: http://www.delphi-forum.de/
Ulrich Gerhardt
+1 for Delphi-Praxis.
Ulrich Gerhardt
A: 

The Free Pascal documentation is another great resource:

http://www.freepascal.org/docs.var

Marco van de Voort