What are some of the core principles needed to master Multi threading using Delphi?

Posted by Gary Becks on Stack Overflow See other posts from Stack Overflow or by Gary Becks
Published on 2011-11-17T07:41:01Z Indexed on 2011/11/17 9:52 UTC
Read the original article Hit count: 223

Filed under:
|

I am kind of new to programming in general (about 8 months with on and off in delphi and a little python here and there) and I am in the process of buying some books.

I am interested in learning about concurrent programming and building multi threaded apps using Delphi. Whenever I do a search for "multithreading delphi" or "delphi multithreading tutorial" I seem to get conflicting results as some of the stuff is about using certain libraries (omnithread library) and other stuff seems to be more geared towards programmers with more experience.

I have studied quite a few books on delphi and for the most part they seem to kind of skim the surface and not really go into depth on the subject. I have a friend who is a programmer (he uses c++) who recommends I learn what is actually going on with the underlying system when using threads as opposed to jumping into how to actually implement them in my programs first.

On amazon.com there are quite a few books on concurrent programming but none of them seem to be made with Delphi in mind.

Basically I need to know what are the main things I should be focused on learning before jumping into using threads, if I can/should attempt to learn them using books that are not specifically aimed at delphi developers (don't want to confuse myself reading books with a bunch of code examples in other languages right now) and if there are any reliable resources/books on the subject that anyone here could recommend.

Thanks in advance.

© Stack Overflow or respective owner

Related posts about multithreading

Related posts about delphi