Why Do You Use Delphi? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T12:35:43Z http://stackoverflow.com/feeds/question/1111537 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1111537/why-do-you-use-delphi 28 Why Do You Use Delphi? lkessler 2009-07-10T19:32:34Z 2009-08-03T07:19:36Z <p>Nick Bradbury (the author of HomeSite, TopStyle and FeedDemon) just posted a fascinating explanation of why he uses Delphi: <a href="http://nick.typepad.com/blog/2009/07/why-i-use-delphi.html" rel="nofollow">http://nick.typepad.com/blog/2009/07/why-i-use-delphi.html</a> </p> <p>I'd like to know if there are other reasons. Why do you use Delphi?</p> <p>(I'm making this community wiki from the onset. I'm interested in hearing your answers, not in points.)</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1111570#1111570 2 Answer by Lou Franco for Why Do You Use Delphi? Lou Franco 2009-07-10T19:39:16Z 2009-07-10T19:39:16Z <p>When I used it, it was because I thought the GUI's that it made looked nicer and were easier to make (than MFC). Object Pascal isn't great, but it was a lot better than VB. These days, I'm pretty happy with C#, so I don't use it any more.</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1111580#1111580 10 Answer by Paul-Jan for Why Do You Use Delphi? Paul-Jan 2009-07-10T19:42:10Z 2009-07-10T19:42:10Z <p>I've got a myriad of reasons, but here is one that is often overlooked: Compilation speed.</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1111582#1111582 6 Answer by Artem Barger for Why Do You Use Delphi? Artem Barger 2009-07-10T19:42:48Z 2009-07-10T19:42:48Z <p>I've used to use it, because:</p> <ol> <li>Relatively quick GUI development.</li> <li>Easy and intuitive development of DB based application.</li> <li>It was one of the kind at those times.</li> </ol> <p>PS. Ah, almost forgot, Object Pascal was the only language I knew when. ;)</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1111590#1111590 13 Answer by smok1 for Why Do You Use Delphi? smok1 2009-07-10T19:43:54Z 2009-07-10T19:43:54Z <p>Because from very few development to tools for Windows (pure Windows without any runtimes), Delphi has highest-level object oriented language (you do not need C++ speed all the time), large user community, tones of available components and really useful built-in component palette. And there are Developer Express tools for Delphi :)</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1111602#1111602 26 Answer by Mason Wheeler for Why Do You Use Delphi? Mason Wheeler 2009-07-10T19:47:03Z 2009-07-10T19:47:03Z <p>Why do I use Delphi? Basic reasons, in no particular order:</p> <ol> <li>Pascal syntax is the most user-friendly of any language I've come across.</li> <li>It's powerful and fast.</li> <li>It manages to be powerful without sacrificing control. Unlike abstraction inversion-prone "higher-level" managed languages, you can easily get down to bare metal on almost every feature of Delphi if you need to.</li> <li>The fastest compiler known to man.</li> <li>The VCL and RTL are a joy to work with.</li> </ol> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1111613#1111613 5 Answer by David for Why Do You Use Delphi? David 2009-07-10T19:49:13Z 2009-07-10T22:22:32Z <p>Because it provided the best middle ground between C++ and Visual Basic:</p> <p>C++ make many common tasks (particularly UI tasks) complicated and prone to exploding with the slightest fault. You could do any task you wanted, but every task was equally time consuming and error prone.</p> <p>Visual Basic made the most common tasks easy to do, often in such a way that the "programmer" was protected from their own stupidity. But Visual Basic also made most things outside of the common denominator impossible without resorting to Visual Basic "hacks" - entire books where devoted to this kind of dark and dangerous magic.</p> <p>Delphi provided an excellent middle ground - a powerful language mostly on par with C++ that had much better type safety, a fantastic standard library for both UI and programming tasks, and a killer IDE.</p> <p>Then Microsoft hired Anders and we got C#, which basically combined the best of C++, Delphi and Java (and a bit of Smalltalk) into a single well designed language, backed by the powerful .NET framework (the Delphi standard library was starting to show its age by 2000). And of course Borland threw Delphi to the dogs, turning one of the best IDEs on the market into one of the worst.</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1111716#1111716 17 Answer by Giel for Why Do You Use Delphi? Giel 2009-07-10T20:10:36Z 2009-07-10T20:10:36Z <p>In Delphi things you don't really understand tend to go right, whereas they tend to go wrong in C++. Yet by the time you do understand it you can still go down to the metal and do things your way if you want to.</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1111731#1111731 7 Answer by PhiS for Why Do You Use Delphi? PhiS 2009-07-10T20:16:06Z 2009-07-15T06:06:03Z <ul> <li><p>As David says, "Because it provides the best middle ground between C++ and Visual Basic"</p></li> <li><p>Provides the programmer with a lot of control, access to OS functions</p></li> <li><p>Produces relatively small native code executables</p></li> <li><p>By and large, compiler produces relatively fast code, almost comparable to C/C++ code (but suboptimal for floating point stuff); has a nice calling convention.</p></li> <li><p>If code needs to be /faster/, it has very powerful inline assembler support, currently supporting up to SSE4.2 instruction sets. (You can write BASM assembly code without having to write the entire program in assembly.)</p></li> <li><p>Compiles fast</p></li> <li><p>Easy to make GUIs</p></li> <li><p>Nice IDE and debugger</p></li> <li><p>I personally think the pascal-style syntax is somewhat easier to read (and especially re-read after a while) than C-style (that's not a major point, though); code is more structured and clearer overall, IMHO.</p></li> </ul> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1111742#1111742 24 Answer by skamradt for Why Do You Use Delphi? skamradt 2009-07-10T20:17:26Z 2009-07-13T22:51:08Z <p>The sheer joy of being in a familiar language...</p> <ul> <li><p>Where code that I wrote decades ago still compiles without any major changes. </p></li> <li><p>A language where if I don't comment at all, I can still make sense of the intention without having to do mental translations.</p></li> <li><p>Where case doesn't matter, so I don't spend hours overlooking a variable that was pulling in the wrong version of iX. </p></li> <li><p>Where assignment of a variable does not return "true" (honestly, how many man years were wasted on bugs in another language when the programmer wanted to say if i==4 but coded i=4 and the loop always returned true?)</p></li> </ul> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1111819#1111819 6 Answer by Argalatyr for Why Do You Use Delphi? Argalatyr 2009-07-10T20:31:08Z 2009-07-10T20:31:08Z <p>In addition to the many strengths listed:</p> <ul> <li>The VCL is excellent and familiar</li> <li>Many of us should admit: <strong>Turbo Pascal nostalgia</strong>!</li> </ul> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1111840#1111840 11 Answer by Allen Bauer for Why Do You Use Delphi? Allen Bauer 2009-07-10T20:33:02Z 2009-07-10T20:33:02Z <p>Because I help develop Delphi itself? Couldn't resist... :-)</p> <p>I've also used Turbo Pascal from way, way back. I know C, C++, C#, some Java, Assembler(x86, 8080, Z80, 68xx, others...), Basic, Forth, Lisp, yada-yada. Of all of them, Delphi (Object Pascal) is the most comfortable and familiar even though I'm rather proficient in many of the others.</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1111908#1111908 9 Answer by Ken White for Why Do You Use Delphi? Ken White 2009-07-10T20:47:36Z 2009-07-10T20:47:36Z <p>That's easy. You can see it <a href="http://stackoverflow.com/questions/548007/what-are-the-advantages-of-c-over-say-delphi-realbasic-for-windows-application/548422#548422">here</a></p> <p>Simply said, Delphi has all of the power to do almost anything on Win32 (kernel level device drivers being the exception), and still builds standalone executables with no external dependencies other than those every Win32 app has on the Windows API. No .NET overhead, fast execution times, most apps still fit on a floppy disk, XCopy deployment, and being able to program down to the steel when needed - these are all advantages of Delphi.</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1112241#1112241 15 Answer by Jim McKeeth for Why Do You Use Delphi? Jim McKeeth 2009-07-10T22:10:40Z 2009-07-10T23:53:22Z <p>I put some thought into this one, and it really comes down to the fact that <strong>Delphi does what it does really, really well</strong>. It takes care of enough of the annoying stuff for me without completely abstracting what is going on. <em>It maintains the right balance between <strong>productivity and power</strong>.</em></p> <p>Even when I was doing C# full time, and was completely familiar with C#, I still found myself writing Delphi at home, or if I needed a utility to do something quickly. </p> <p>Every so often I hear about some new shiny language or development tool, so I download the tools, check them out, go through the tutorial, and them am floored to find out they still don't do something that Delphi has had since Delphi 1. Like Eclipse doesn't have a Visual form designer? What is up with that? </p> <p>Or I was working with C# again the other day and was reminded of the fact that if you don't include code to handle exceptions, then Visual Studio just assumes you don't want to know about them, so even though you are debugging the application it never lets you know when an exception occurs. </p> <p>Sure there are some things that Delphi may not be ideal for, but of the 90% of software development that goes on out there Delphi is the best overall tool for all the various reasons everyone has listed here.</p> <ol> <li>Good level of backwards compatibility</li> <li>Modern language features (Generics, Anonymous methods, etc.)</li> <li>Frequent updates (Delphi 2007 supported Vista before Microsoft did!)</li> <li>Very fast compile and execution</li> <li>Just enough out of the box to get you going, and then extensible enough to really customize (through Add-ins and components).</li> </ol> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1113169#1113169 1 Answer by plainth for Why Do You Use Delphi? plainth 2009-07-11T07:36:49Z 2009-07-11T07:36:49Z <p>+1 to other postings.</p> <p>What wasn't stressed: Design decisions (language syntax, VCL, RTL etc.) made the things look very natural hence... </p> <ul> <li><p>The developer is much more productive</p></li> <li><p>One can control bigger amounts of code compared with other languages</p></li> <li><p>Learning curve is improved</p></li> <li><p>One can concentrate on his business problem and not on how to code it.</p></li> <li><p>The amount of bugs (both logical &amp; coding) per LOC is greatly reduced</p></li> </ul> <p>I just hope that this trend will continue...</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1113451#1113451 7 Answer by SeanX for Why Do You Use Delphi? SeanX 2009-07-11T10:41:45Z 2009-07-11T10:41:45Z <p>Because I develop windows shareware.<br /> I get the small size and speed of c++ with the productivity of C#.</p> <p>For web apps,I use something different, but in it's niche Delphi is hard to touch. </p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1113569#1113569 7 Answer by Holgerwa for Why Do You Use Delphi? Holgerwa 2009-07-11T11:56:07Z 2009-07-11T11:56:07Z <p>I use Delphi because</p> <ul> <li>Pascal is my favourite language</li> <li>there was never anything I coulnd't do with Delphi</li> <li>compile time beats all other languages I've seen so far</li> <li>there is a very good community</li> <li>3rd party components exist for everything one could wish for</li> <li>it creates standalone apps with no dependencies</li> </ul> <p>and yes, Turbo Pascal nostalgia too, I proudly admit :)</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1113637#1113637 4 Answer by Bill99 for Why Do You Use Delphi? Bill99 2009-07-11T12:40:39Z 2009-07-11T12:40:39Z <p>You can teach C/C++ and VB programmers how to use Delphi within a couple of weeks. Both lots complain (about the IDE and semicolons) and you do get some of their favourite idioms, but they do become productive very quickly.</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1115866#1115866 2 Answer by Steve for Why Do You Use Delphi? Steve 2009-07-12T11:31:15Z 2009-07-12T11:44:18Z <p>I actually think well written Object Pascal code looks beautiful. Sad I know, but take a look at some of your best Pascal code..are you smiling?</p> <p>I don't get that looking at C# for instance.</p> <p>That's not the only, or even most important reason I use Delphi, but it does help if you are smiling while working! </p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1117468#1117468 4 Answer by Alister for Why Do You Use Delphi? Alister 2009-07-13T01:59:09Z 2009-07-13T01:59:09Z <p>My main reason for using Delphi is that is what the primary application I work on has been developed in for the past 12 (or more) years (I've been working on it for about 10 of those years). The application has never needed a rewrite, which it certainly would have if it had written it in any language Microsoft produced.</p> <p>I think it's really awesome you can take an application written in Delphi 1, and with minimal (if any) modification have it running in Delphi 2009. I don't think you could even take "hello world" written in VB6 and compile it in VS2008/10 (correct me if I'm wrong here).</p> <p>I've been doing a bit of C# dev lately, and there are some very compelling reasons for using it, but I'm sticking with Delphi for now, especially as it is now under aggressive development and improvement.</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1118395#1118395 1 Answer by John for Why Do You Use Delphi? John 2009-07-13T09:03:44Z 2009-07-13T09:03:44Z <p>When I moved from Delphi to C#,I thought Delphi is not so modern seeing the swanky LINQ and other nice features in C#.Months later I had to move a huge project in an unmanaged language and my choice was Delphi.I tried out Delphi 2009 and I was amazed,Delphi is very good!</p> <ol> <li>-Unmanaged x86 cannot be decompiled!</li> <li>-Generics,Anonymous methods</li> <li>-Very Fast Compiler,Very fast execution</li> <li>-The owner also provides a C++Builder for the C-style programmers ,in which you can use Pascal.</li> </ol> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1118574#1118574 2 Answer by Jan Mitrovics for Why Do You Use Delphi? Jan Mitrovics 2009-07-13T09:54:23Z 2009-07-13T11:54:19Z <p>Back in 1986 I was working for a University and we had to select a programming environment for some scientific instrumentation. Our choices were C or Pascal at that time (Turbo Pascal of course). We chose Turbo Pascal and the main reasons were readability and maintainability of the code as well as speed of the compiler. With many different persons working on the code over the years the first two points have really been crucial. Fast forward more than 20 years and Delphi is my main programming platform for Windows and both points are still very important. I am able to leverage code that has been written many years ago. Delphi has allowed me to develop faster and with better quality and thus been one important basis of commercial success during all these years.</p> <p>The most amazing part in retrospect of Delphi is how constant innovation has kept the language / IDE / framework up to date, while maintaining a very high degree of compatibility. Turbo Pascal 5.5 introduced object oriented programming, Delphi 1 introduced components and RAD programming. Delphi 2 introduced 32bit. The improvements went on, with every release and now with Delphi 2009 we have generics, Unicode, unit testing, refactoring and much much more. All these improvements happened in a way that allowed me to develop my skill set with the language and improve my code base. </p> <p>I do development in a number of different languages (e.g. C on micro controllers, Java on mobile phones, C#.net, PHP, assembly language on various micro controllers / processors, ...). I have used other languages (Basic, Forth, Fortran, ...). The tool set is dictated by the platform / purpose of the development task. For Win32 there is nothing that comes close to Delphi.</p> <p>We cannot forsee the future, but with the history of Delphi and the current developments/ roadmaps and engagement if Delphi at Embarcadero (Delphi Prism, cross platform developments, Win64) my initial decision of 1986 continuous to be excellent!</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1118711#1118711 1 Answer by fortran for Why Do You Use Delphi? fortran 2009-07-13T10:29:20Z 2009-07-13T10:29:20Z <p>Because I got a CD with a Delphi 2 compiler that came with a IBM programming course that I bought at the kiosk (just the first fascicle, that was the cheap one) and I really liked it :-)</p> <p>To be honest, I didn't knew anything about programming yet, I just had fun placing buttons and changing the colors of the widgets when clicked, but when I got my fist Object Oriented Programming lessons at the University... then everything snapped into it's place and I became a much happier person! :-D</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1124727#1124727 1 Answer by Gad D Lord for Why Do You Use Delphi? Gad D Lord 2009-07-14T11:11:24Z 2009-07-14T11:11:24Z <ul> <li>Since I already have about 300'000 lines of meaningful source code which will take me about 3 years to port to C++.</li> <li>Since the IDE is not that bad (I wished it was stable as Visual Studio)</li> <li>Since there are lots of Internet resources (still) to copy/paste from</li> <li>Since it is fast</li> <li>and most of all... it compiles to NATIVE EXECUTABLE. Sick and tired of runtimes!!</li> </ul> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1134981#1134981 2 Answer by Gerard for Why Do You Use Delphi? Gerard 2009-07-16T01:23:35Z 2009-07-16T01:23:35Z <p>Back when Delphi 1 was new I was attending a MS VB4 launch and they kept referring to the UI speed of Delphi. The presenter even went on to say that he "didn't know how they made it work so fast". I'd not heard of Delphi so I though I would try it out - Thanks MS!</p> <p>To be honest it comes down to 3 major things for me:</p> <ul> <li>The UI always works and looks slick. We always get comments on that. It sells product.</li> <li>Its pure RAD. We get things prototyped faster than talking about it.</li> <li>It works with almost any API or platform. We interface to a lot of weird non-MS software and angry hardware. It works. There's always a way to get Delphi to talk to something and maintain consistent up-time.</li> </ul> <p>Creating stand-alone apps is another distinct bonus. Native code rocks! Simple.</p> <p>With Delphi you feel in control of what your app is doing.</p> http://stackoverflow.com/questions/1111537/why-do-you-use-delphi/1221033#1221033 1 Answer by uffe for Why Do You Use Delphi? uffe 2009-08-03T07:19:36Z 2009-08-03T07:19:36Z <p>Very fast compiling and code output, which is also a lot less error prone than c or c++.</p> <p>It is readable and a lot of my old code is still running on all windows platforms as well as Vista, the IDE is actually more stable than Visual studio 2003 in Vista, which we have to use on some customers solutions that only run .net 1.1 so in that way Delphi is actually more windows compatible than some of Microsofts own dev tools (Delphi 7 works in Vista -> Visual studio 2003 doesn't without a lot of hacking).</p> <p>Since it doesn't use a trillion different libraries it is actually easy to get up and running on Crossover office/Wine so that my Delphi windows app is now running on Linux and Mac.</p>