| lbochitt (2) | |
|
Hi, I'm new into C++ and I wanted to know if this language is useful for developing online applications. Thanks in advance | |
|
|
|
| Sargats (2) | |||
It's a great language to know though, if you have time, definitely learn it. | |||
|
|
|||
| ResidentBiscuit (2645) | |
| Useful, yes. Simple, not so much. | |
|
|
|
| Blue Shell (25) | |
|
At what stage does a beginner become intermediate, and finally advanced in C++? My friends boast about how they can know multiple languages. but would it be better to learn a little bit of each language you stumble upon or learn one language thoroughly before moving onto the next? Right now I've been learning C++ for 9 months. Is it enough? What is needed to fully understand C++? | |
|
|
|
| EssGeEich (1007) | |||||||
I used to claim I learnt VB, Java, Javascript, HTML and such, but then I understood C++ was for me and dropped all of them. You will never program in more than one language once you get advanced.
I began with C++ and find it really good, even if I only used the basics of it. Then I tried VB, but found it poor after not more a week. Java, Javascript and HTML didn't last more. You know a language is "made for you" because you can use it and understand it at the same time.
I'm doing C++ from three years and YET i have new things to learn, with the new C++11 'update'. But I see no compiler being fully C++11 compliant, anyways. | |||||||
|
|
|||||||
| ResidentBiscuit (2645) | |||
Oh yea? Have fun with employment.
You should be able to easily pick up languages after awhile. If you're confined to one language, that's a weakness. | |||
|
|
|||
| cnoeval (462) | |
|
At 9 months you need an additional 3 weeks, 2 days, 7 hours and 46 minutes to fully understand C++. Keep at it, you're almost there!... Kidding aside, this question is ALWAYS meaningless. We don't know you, or your goals, dreams, limitations, abilities, etc. etc. Simply put, you've learned "enough" of anything if you're able to accomplish your goals with it. | |
|
|
|
| devonrevenge (892) | |
| I haven't ever found a use for c++, potentialy theres an infinite amount of uses for it, i cant wait to build my first genuinley useful program | |
|
|
|
| Framework (3237) | |
|
C++ wasn't intended to excel in any field of computing. Libraries, such as Boost.Asio, and OS APIs, such as WinSock, aim C++'s power towards networking. Some languages are intended for specific use while others, such as C/C++, are intended for general purpose use. C++ is a good choice; flexible, fast, general purpose, wealthy choice of libraries and help around every corner. Wazzak | |
|
|
|
| Blue Shell (25) | |
|
Thanks! That clears things up, and is good advice. Ill stick to it. | |
|
|
|
| lbochitt (2) | |
|
Thanks to all for replying Mi idea was to create a program that transfers data from one website to another one. For example: A user sends some data from a determined website, the program receives it and then transfers it to another website. In theory it is a very simple task. However i think programming this sort of things is not that easy. I just wanted to know if this is the right language to create such program. As I have already said: I know almost nothing about programming | |
|
Last edited on
|
|
| Chervil (1203) | |
|
I would tend to use C++ (or other language) for a program which runs on my own machine. But for online applications, its often necessary or more appropriate to run a program on the server where a website is hosted. For server applications, though C++ could be used, such tasks are often done using a scripting language such as PHP or Perl. This might be a one-off task run by a site admin, or simply run on-demand when a particular page is displayed in a browser. | |
|
|
|
| masterofpuppets690 (47) | |
| There's HipHop which is used by Facebook which compiles PHP into C++ code but I've never used it and don't know much about it. As far as web applications whether it be server side of client side(I doubt C++ can even be done in client side) there are better choices in my opinion. I've used JSP with Java and I must say I really enjoyed using it and thats even though I don't like Java but as a web framework it was powerful, fast(much much faster than Django or PHP) and really flexible and in my opinion a much better choice for server side programming than C++. You could also look at Django and PHP if you would like, never done any Perl but have seen the syntax and strange looking is an understatement. There's also the web framework for Scala which Twitter uses if I'm correct. Its supposed to be very good. | |
|
|
|