What to Learn after C++? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T23:20:45Zhttp://stackoverflow.com/feeds/question/61109http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/61109/what-to-learn-after-c15What to Learn after C++?Stephen Whitmore2008-09-14T03:49:06Z2009-08-29T17:07:43Z
<p>I have been learning C++ for a while now, I find it very powerful. But, the problem is the the level of abstraction is not much and I have to do memory management myself.
What are the languages that I can use which uses a higher level of abstraction.</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61113#611135Answer by Greg Hewgill for What to Learn after C++?Greg Hewgill2008-09-14T03:55:28Z2008-09-14T03:55:28Z<p>If you're comfortable with C++ syntax and style, you might find <a href="http://www.digitalmars.com/d/" rel="nofollow">D</a> to be an interesting language. Or if you want to branch out, any of Python, C#, Java, Ruby would be excellent choices.</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61114#611143Answer by DGentry for What to Learn after C++?DGentry2008-09-14T03:55:48Z2008-09-14T03:55:48Z<p>C# if you're in the Microsoft ecosystem.</p>
<p>Python and Ruby seem to have the most traction in the Linux/Unix/etc space.</p>
<p>ObjectiveC is dominant on the Macintosh and iPhone. The most recent MacOS implements garbage collection for a subset of the frameworks, but to use the rest you'd have to do resource management yourself.</p>
<p>You could learn Java, as it does garbage collection as well, but the number of frameworks you'd need to become familiar with to be a productive Java developer is daunting.</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61117#611172Answer by Tom Martin for What to Learn after C++?Tom Martin2008-09-14T04:01:41Z2008-09-14T04:01:41Z<p>Well if you're looking for a very high level of abstraction and memory management then I'd say lisp would be an ideal candidate. I'm <a href="http://gigamonkeys.com/book/" rel="nofollow">learning</a> it now, slowly, and it's the most fun I've had with a new language.</p>
<p>Having said that Python or Ruby may be a better compromise between expressiveness and popularity. Python's Django framework is one of the better RAD frameworks if you're looking for web application stuff.</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61127#611274Answer by BCS for What to Learn after C++?BCS2008-09-14T04:18:08Z2008-09-14T04:18:08Z<p>ditto Lisp,.. or scheme</p>
<p>Even if you don't ever use it, it's handy. I only <em>really</em> got template programming after learning it.</p>
<p>Another one is prolog. it puts you in a non sequential mindset.</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61128#611280Answer by Gulzar for What to Learn after C++?Gulzar2008-09-14T04:23:27Z2008-09-14T04:45:08Z<p>Since you are already into C++, next step would be to learn .Net through <a href="http://www.ondotnet.com/pub/a/dotnet/2003/01/13/intromcpp.html" rel="nofollow">managed C++</a> or managed extensions for C++..this will get you a step in the big world of .Net framework..Once you understand the framework, makes it more comfortable to learn other .Net languages like C#, VB.Net etc.</p>
<p><em>One of the areas that MC++ excels in, and is in fact unique in amongst the .NET languages, is the ability to take an existing unmanaged (C++) application, recompile it with the /clr switch, have it generate MSIL and then run under the CLR. This extraordinary feat is aptly termed "It Just Works (IJW)!" There are some limitations, but for the most part, the application will just run. The C++ code can consist of old-fashioned printf statements, MFC, ATL, or even templates!</em></p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61135#611354Answer by cdv for What to Learn after C++?cdv2008-09-14T04:45:44Z2008-09-14T04:45:44Z<p>Trying something really foreign like Haskell will allow you to think in different ways. It also helps you to think recursively. C++ has recursion but it infiltrates many more parts of functional languages.</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61138#6113837Answer by Matt Sheppard for What to Learn after C++?Matt Sheppard2008-09-14T04:54:32Z2009-02-09T11:49:49Z<p>Java, C#, Ruby, Python and JavaScript are probably the big choices before you.</p>
<p><a href="http://en.wikipedia.org/wiki/Java_(programming_language)" rel="nofollow">Java</a> and <a href="http://en.wikipedia.org/wiki/C_Sharp" rel="nofollow">C#</a> are not hugely different languages. This big difference you'll find from C++ is memory management (i.e. objects are automatically freed when they are no longer referenced). You would chose these if you were interested in desktop style applications, or keen on static typing (and you'd probably choose between them based on how you feel towards Microsoft and the Windows platform). In both cases you'll find much richer standard libraries than you'll be used to from C++.</p>
<p><a href="http://en.wikipedia.org/wiki/Python_(programming_language)" rel="nofollow">Python</a> and <a href="http://en.wikipedia.org/wiki/Ruby_(programming_language)" rel="nofollow">Ruby</a> take a step away from static typing, into a world where you can call and method on any object (and fail at runtime if it's not there). That is both a blessing (a lot less boilerplate code) and a curse (the compiler can't catch those errors for you anymore). Once again, you'll find they have richer standard libraries, and are higer level again than Java / C#. Performance is the main downfall, with Python being somewhat faster than Ruby as I understand it. To choose between them, you'd probably choose Ruby if you're interesting in web development for the Ruby on Rails framework community, and otherwise go with Python.</p>
<p><a href="http://en.wikipedia.org/wiki/JavaScript" rel="nofollow">JavaScript</a> is even more different from C++ in that it does away with classes entirely. Objects are simply cloned from other objects and can have methods and properties added to them at runtime. Very flexible, but also very easy to make into a total mess. JavaScript is the only real choice if you're interested in running applications in a browser, which is really coming into its own as a platform. You'll find the standard libraries available rather limited if you're not doing a lot with the browser, but there are quite a few good frameworks which fill in some of the gaps.</p>
<p>Some other interesting, though more niche choices are</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Smalltalk" rel="nofollow">Smalltalk</a> - More or less in the Ruby and Python camp, and significantly faster as I understand it. Be careful though _ I've seen lots of good engineers learn Smalltalk and never come back ;)</li>
<li><a href="http://en.wikipedia.org/wiki/Objective-C" rel="nofollow">Objective-C</a> - When C went object oriented, C++ went one way (static typing), and Objective-C went the other (dynamic typing). It's quite Smalltalk inspired, and has a good standard library if you're in Mac / iPhone land. In terms of memory management, unlike everything else I've listed, it's not garbage collected (though that's now an option on Mac OS X 10.5), but it does have a reference counting scheme which makes life significantly simpler than managing memory by hand.</li>
<li><a href="http://en.wikipedia.org/wiki/Lisp_programming_language" rel="nofollow">Lisp</a> - I've never learnt it myself beyond what I needed for minor Emacs hacking. As I understand it, the libraries were nice in their day, but though the language remains supremely elegant, they've fallen a little behind the times.</li>
<li><a href="http://en.wikipedia.org/wiki/Haskell_(programming_language)" rel="nofollow">Haskel</a> - If you wanted a complete break from objects and classes, Haskel and it's functional approach is an interesting way to go (or Lisp as above, or <a href="http://en.wikipedia.org/wiki/F_Sharp_programming_language" rel="nofollow">F#</a> if you are in .Net land). Basically, you're giving up loops and variables in favour of doing everything recursively. Takes some time to wrap your mind around, and probably isn't practical for most real world applications, but it's a good one to learn.</li>
<li><a href="http://en.wikipedia.org/wiki/Eiffel_(programming_language)" rel="nofollow">Eiffel</a> - I love it - Very clean syntax, and designed for serious engineering type systems. Statically types like C# and Java, and with a weaker standard library, but it will make you really think about language and class library design.</li>
<li><a href="http://en.wikipedia.org/wiki/ActionScript" rel="nofollow">ActionScript</a> and <a href="http://en.wikipedia.org/wiki/Adobe_Flex" rel="nofollow">Flex</a> - The programming interface to Flash, which is based on what seems to be a statically typed version of JavaScript. I've played with it a bit, and it's quite slick if you're interested in developing media based applications. You can also push beyond the browser with Flex and into the <a href="http://en.wikipedia.org/wiki/Adobe_Integrated_Runtime" rel="nofollow">Air</a> platform to build real desktop apps.</li>
</ul>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61152#611521Answer by Peter for What to Learn after C++?Peter2008-09-14T05:51:06Z2008-09-14T05:51:06Z<p>try c# much :)</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61186#6118617Answer by Thomi for What to Learn after C++?Thomi2008-09-14T07:33:15Z2009-02-11T20:05:48Z<p>I would say that from your question you probably haven't finished learning about C++. If you're still doing your own memory managment then you still have a long way to go my friend!</p>
<p>Check out the auto_ptr and shared_ptr - check out the Boost libraries.</p>
<p>Similarly with abstraction - what are you specifically complaining about? AFAIK there's not much you can't do with C++ that is present in other <strong>strongly-typed languages</strong>.</p>
<p>I know this doesn't answer your question - you want to move forwards, but C++ is one of those things where you never really stop learning. If you get bored, take a brief foray into templates and template meta-programming...</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61192#611920Answer by macbirdie for What to Learn after C++?macbirdie2008-09-14T07:49:44Z2008-09-14T07:49:44Z<p>I recommend python as it's not only a sexy language, but also very widely used and easy to integrate with C++ through <a href="http://www.boost.org/doc/libs/1_36_0/libs/python/doc/index.html" rel="nofollow">Boost.Python</a>.</p>
<p>But as <a href="#61186" rel="nofollow">Thomi</a> said, there's lot to explore in C++ and with the help of Boost libraries it's becoming really easy to develop in.</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61199#6119914Answer by Wedge for What to Learn after C++?Wedge2008-09-14T08:28:51Z2008-09-14T08:28:51Z<p>I see a lot of excellent suggestions so far. However, I think there's something missing, assembler.</p>
<p><strong>Why learn assembly language?</strong></p>
<ul>
<li><strong>It's not as difficult as you may think</strong>. Assembly language is a lot smaller in scope than many modern languages, there are a few tricks you need to understand for it to make sense, but it's not that complicated.</li>
<li><strong>It broadens your knowledge base.</strong> Knowing the fundamentals is almost always beneficial, even when working at a high level.</li>
<li><strong>It can be extremely useful when debugging.</strong> Especially debugging native code without the source, the knowledge you gain from learning assembler enhances your ability to debug in these situations by leaps and bounds.</li>
<li><strong>It gives you more options.</strong> When the rare circumstance comes up where assembly code is needed you won't be helpless.</li>
<li><strong>It's good for your resume.</strong> It shows that you learn beyond just the bare minimum needed to keep your current job, it shows a curiosity about fundamentals, and it puts you in a different class of programmers, and that class tends to be more experienced and more capable.</li>
<li><strong>It's just plain cool.</strong></li>
</ul>
<p>Some assembly language resources:</p>
<ul>
<li><a href="http://www.sandpile.org/" rel="nofollow">Sandpile.org</a> (assembly language / processor architecture reference)</li>
<li><a href="http://burks.brighton.ac.uk/burks/language/asm/asmtut/asm1.htm" rel="nofollow">Gavin's Guide to 80x86 Assembly</a> (a decent online tutorial)</li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0132383101" rel="nofollow">Assembly Language for Intel-Based Computers (5e)</a> (a decent textbook for x86 assembly)</li>
</ul>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61247#612470Answer by grok for What to Learn after C++?grok2008-09-14T10:10:47Z2008-09-14T10:10:47Z<p>Rather than suggest a specific language, I would recommend you pick any language or languages that offer the following 4 features:</p>
<ol>
<li>Automatic Memory Management</li>
<li>Reflection/Introspection</li>
<li>Declarative/Functional constructs(e.g. lambda functions)</li>
<li>Duck Typing</li>
</ol>
<p>The idea here is to expand your programming perspective to include concepts that the C++ language does not offer you out of the box. </p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61312#613120Answer by bruceatk for What to Learn after C++?bruceatk2008-09-14T13:00:07Z2008-09-14T13:00:07Z<p>It depends on what you want to do. If you have some specific tasks that you are interested in accomplishing then look at languages that are best for those types of tasks. The best way to learn a language is to actually use it.</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/61857#618571Answer by Soumitra for What to Learn after C++?Soumitra2008-09-15T04:34:46Z2008-09-15T04:34:46Z<p>if you want to abstract memory management, Java comes to my mind instantly. </p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/70035#700351Answer by Stacker for What to Learn after C++?Stacker2008-09-16T07:20:51Z2008-09-16T07:20:51Z<p>I'd say it depends on the kind of programming you want to try. If you want to stay on the OOP side, learn <a href="http://python.org/" rel="nofollow">Python</a> or <a href="http://www.ruby-lang.org/en/" rel="nofollow">Ruby</a>, both languages provide an easy way to create bindings to use your C++ code from a script (for efficiency reasons).</p>
<p>If you need another approach to programming, learn a "functional" language like Lisp or Haskell.</p>
<p>And if you need to include a fast and small scripting language inside your C++ application, try <a href="http://lua.org" rel="nofollow">Lua</a>.</p>
<p>Last but not least, if you know Java and hate it, you can try <a href="http://www.scala-lang.org/" rel="nofollow">Scala</a>, a language where you can mix your Java classes with your Scala code, very interesting.</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/70061#700612Answer by underspecified for What to Learn after C++?underspecified2008-09-16T07:25:53Z2008-09-16T07:25:53Z<p>Scheme.</p>
<p><a href="http://www.ccs.neu.edu/home/matthias/BTLS/" rel="nofollow">The Little Schemer</a> and <a href="http://mitpress.mit.edu/sicp/" rel="nofollow">Structure and Interpretation of Computer Program</a> will stretch your mind in strange and wonderful ways.</p>
<p><a href="http://www.drscheme.org/" rel="nofollow">DrScheme</a> is a good IDE for beginners. <a href="http://www.scheme.com/tspl3/" rel="nofollow">The Scheme Programming Language</a> makes a good, free reference.</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/73986#739861Answer by Steve for What to Learn after C++?Steve2008-09-16T16:05:32Z2008-09-16T16:05:32Z<p>I suggest learning database design and a query language such as SQL.</p>
<p>You can start with a desktop tool like Microsoft Access or use the free SQL Server Express or Postgre or MySQL.</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/74203#742030Answer by Kristian for What to Learn after C++?Kristian2008-09-16T16:23:33Z2008-09-16T16:23:33Z<p>I'd say get started with Python. It has a higher level of abstraction and it teaches you the importance of indenting and making "pretty" code. Not that "pretty" is very important, but it will make the future maintainer of your code a lot happier :)</p>
<p>There's a lot of example code out there, and if you are into Linux there are various distributions out there who have all (or most) of their tools based on the language. If you like digging into how managing an operating systems works (something most programmers do) it's a good start. Before I get the flames I said managing, not the actual kernel stuff for that you mostly need C and you should have that covered.</p>
<p>On the other hand it might be nice to dive into the C side of things, ignore the OO stuff and learn functional programming. If you head down that road I also suggest to start with basic assembly language like one of the upper posts suggested. Maybe HLA (High-Level Assembly by Randall Hyde, he wrote a great book called Art of Assembly Language Programming) is a good start. You'll either learn to love memory management or hate it for the rest of your live. Good to know in case you want to start a career in programming :)</p>
<p>However if you're looking to make a job out of programming, Java and J2EE is an easy money maker if you know what you're doing. IMHO it gets boring really quick though.</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/388049#3880490Answer by Hernán for What to Learn after C++?Hernán2008-12-23T02:54:39Z2008-12-23T02:54:39Z<p>Well I think there is no predefined route in learning programming languages. You may learn your next lang based on your job needs, academic research, just for fun, etc. There are many options. </p>
<p>In you feel comfortable in C++, you can go down and learn some assembly. It's a dark art but you'll be glad when you encounter some hard debugging session. </p>
<p>In terms of more abstraction, Smalltalk is extremely fun, OOP-pure and 100% dynamic (debugging is a pleasant thing to do, which is not in static-typed languages). Dolphin Smalltalk is a good implementation for Windows, even the free community edition gives enough to play with. In multiplatform Smalltalk VMs, go for Visualworks or Squeak. Visualworks is extremely stable and comes with a lot of documentation.</p>
<p>Python is used today in many, many fields. I don't know anything about Python excepting the basic syntax and semantics, but it's required today for many jobs.</p>
<p>Java it's, well Java. It's interesting that Java never catch on me. You may get interested on Java, altough. Ask here for advantages of using it over C++ or other OOP languages.</p>
<p>For Web development go for Javascript, specially considering the AJAX wave. It's getting interesting those days. We've talked about Smalltalk, all right, Seaside is an amazing framework for web development. It works (at least I tried on) Squeak /Visualworks... it's beatiful.</p>
<p>Well, there are a lot of more to get your hands on: Scheme, LISP, Ruby, Lua, Bash (!), Perl (ugh), Haskell... Try them all and have fun!</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/527969#5279690Answer by Jace Jung for What to Learn after C++?Jace Jung2009-02-09T12:36:12Z2009-02-09T12:36:12Z<p><strong>Any language you interested will do!!</strong></p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/577513#5775131Answer by Comptrol for What to Learn after C++?Comptrol2009-02-23T12:43:56Z2009-02-23T12:43:56Z<p><a href="http://en.wikipedia.org/wiki/Qt_toolkit" rel="nofollow">Qt</a></p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/577530#5775301Answer by Xolve for What to Learn after C++?Xolve2009-02-23T12:51:50Z2009-02-23T12:51:50Z<p>Why not learn <strong>Qt</strong>? Its a great application development framework available on all platforms and even mobile devices!</p>
http://stackoverflow.com/questions/61109/what-to-learn-after-c/1351912#1351912-1Answer by Mylo for What to Learn after C++?Mylo2009-08-29T17:07:43Z2009-08-29T17:07:43Z<p>Personally, I have been programming in Java, Python, C/++ and my favorite has to be python. Although C++ can do everything Python can do and more, I wrote a Python program with about 10 lines that would take about 50 in C++. So, moral of the story, use python.</p>