Possible Duplicate:
What is the easiest language to start with?
Hello,
My question is simple, what is the best language to start, i've tryed Java, Delphi, VB, Python, but what language i can use to all: Windows CE, Windows, Linux...
Thanks!
|
1
|
Hello, My question is simple, what is the best language to start, i've tryed Java, Delphi, VB, Python, but what language i can use to all: Windows CE, Windows, Linux... Thanks! |
||||||
|
closed as exact duplicate by John Kugelman, Jimmy, Aiden Bell, Michael Petrotta, Ed Swangren Jul 6 at 22:40 |
|
|
Python does run on all of these, see here; apparently so does Java (no personal experience), see here. There are Delphi and VB clones for Linux (I don't know about Win CE for those, nor how close the clone ares). Personally, I'd suggest Python (also runs on Nokia S60, Android, etc) but I'm biased;-). |
||||||||
|
|
|
My own "obvious" answer to this oh-so-common questions is "try a few and see which one you like the best". If you don't learn a language with a specific goal in mind, and judging from your question you don't, just pick the one that is the most fun to work in. Now, you seem to have already tried quite a bunch. So I'm confused, why are you still looking? You should, by now, have a few points about what you like and don't like in a language. Wouldn't it be possible to find a better language with those pointers in mind? Or, did you by try mean "read the first chapter of one tutorial for fifteen minutes"? |
||
|
|
|
|
I have tried a plethora of languages. I would recommend C/C++. Another advantage is that many languages tend to look like C (eg. Java, PHP, C#...) |
||
|
|
|
|
I suggest C# for a couple of reasons. It is useable on pretty much all platforms (using MONO on Linux/Unix) but is also considerably easier to learn that C/C++, or Java. I suggest this over VB (although that is what I learned on) because it will force you to get around many coding bad habits than a non-strict language such as VB/VBScript would allow. Don't get me wrong...you can code some slop together with C# too...but a lot less so. With C# you can create console apps, windows services, threaded apps, database apps, server and desktop apps, web apps, apps for phones, etc. There is a huge community around it. It is cutting edge and easy to use with concepts such as LINQ. It can be OOP, procedural, functional, etc. depending on how and what you use within it's offerings. I love it! |
||||
|
|
|
Looks like C/C++ to me: Linux makes the Microsoft languages a non-obvious choice, and Windows CE makes the non-Microsoft languages non-obvious. |
||
|
|
|
|
C is used on every platform, and it's been around for many years. Learning C, and knowing how to allocate your own memory will help you debug Garbage Collection issues on languages like Java or any .NET language. Also knowing how types work in a strongly typed language like C helps when learning the difference between "" and NULL and 0. So, I think C is the perfect language to learn if you plan on learning other languages in your career. |
||||||
|