Are there any good guides online to prime an advanced Java user for advanced C++ in a short period of time?
feedback
|
closed as not constructive by Bill the Lizard♦ Feb 9 at 11:36
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
It's almost a contradiction in terms to suggest that someone can become an advanced practitioner of anything in a short period of time. Although your Java knowledge will help you learn C++ faster than someone who doesn't know any programming languages, do not be fooled by the superficial similarity of the two languages - they are very different beasts. Here are a few possible starting points:
Aside: Some other respondents have recommended Bjarne Stroustrup's book. Personally I think this is C++'s equivalent of the JLS. In other words, a great resource for getting definitive answers about the language "from the source", but very weak from the POV of language pedagogy. | |||||||||||
feedback
|
|
No. There isn't. There is one very important difference between the two languages. Java is well-defined and nailed down. If you do something wrong, the language spec defines what should happen: Either the code should behave like this (which may not be what you expect, but is at least deterministic and verifiable, so you can find out that you were wrong), or the compiler should generate an error. In C++, there's no such luck. The language spec only defines what a program should behave like if you write it correctly. Of course it also defines some errors that must be caught by the compiler, but in most cases, if you do something wrong, you have a program that compiles, but whose behavior is not defined by the C++ specification. It exhibits Undefined Behavior. And you have no way of knowing this. There are no warning lights. No compiler errors. No crashes before everything go seriously wrong. It probably won't even be consistent or repeatable. One day, the program will run fine, the next it'll crash. It'll run on my system, but crash on yours. And it might not crash when you make the error. It might corrupt some rarely-used bit of memory, so that two hours later, the application will crash. In Java, "learning by doing" works pretty well. You just have to learn the basics of the language, and the rest can be figured out by listening to compiler errors and by looking at your code in the debugger. In C++, you'll crash straight into undefined-behavior land, and your code will seem to work fine in the debugger. And then it'll crash 20 minutes later in a completely unrelated piece of code. Because you did something wrong earlier on, in the bit of code that you actually checked in the debugger. Many simple constructs are undefined in C++:
These are just a few examples of very simple operations that seem to work, but which can and will blow up in your face. (The last one is a bit safer, because it's not undefined, it doesn't throw away all guarantees about your program. You simply don't know which parameter is evaluated first.)
So no.
You'll have to take the long route. Learn the language first. Take the time you need for that. Of course this doesn't mean that it is impossible to learn C++. Just that it is much more complex than learning Java or Python. Partly because the language is just much more complicated, but also because you have no way of knowing whether your program actually stays within the boundaries defined by the language -- it might rely on something that's not specified in the C++ standard, and then all bets are off. | |||||||||||||||||||
feedback
|
|
Apart from some minor syntax, the two languages are completely different, so you will have to read at least one book to get up to speed - online "resources" simply will not cut it. For an experienced programmer, the obvious choice is Stroustrup's The C++ Programming Language. I would back this up with Josuttis's The C++ Standard Library. | |||||||||||||||||||||
feedback
|
|
Its not specific to Java programmers, but I find this SO thread very helpful. | |||||||||||||
feedback
|
|
There are several gotchas you will run into when moving from Java to C++. As others have already said, many seemingly simple constructs can lead to undefined behaviour. Here's bunch of things to look out for: Pointers
Object oriented programming
Functions
Templates/Generics
Memory management
Operator overloading
This is by no means an exhaustive list, so hopefully you can see that the two languages are actually quite different. You will have to learn C++ more or less from scratch from a good book, though you might be able to pick it up quite quickly, being an experienced Java programmer. EDIT: You asked what "undefined behaviour" means in the context of C++. It means that the code can do anything at all. It might run fine. It might crash the program. If it writes to an executable page by mistake, there is even a small but finite possibility that it could erase your hard disk (though most modern OSes should prevent this). | |||||||||
feedback
|
|
Here's some ideas you'll have to pick up. Undefined behavior. Java nails down all sorts of behavior, and C++ doesn't. To be good at C++, you need to avoid undefined behavior. RAII. Java garbage-collects memory, and has constructs like Less inheritance. In Java, all objects inherit from one class, and data structures operate on that basis. In C++, inheritance hierarchies are normally much shallower, and data structures are largely done with templates. You do need to understand templates. Stack vs. Heap. In Java, classes are dynamically allocated, and standalone primitives are lexically scoped. C++ is much looser, which means that it's necessary to have explicit pointers and separate operators for referencing class members depending on whether they're designated by pointers or not. There's lots of other differences, but they typically aren't as important (most people don't find it necessary to overload most operators) or are easier to pick up (differences in argument passing). Probably the fundamental philosophical difference is that Java was designed to avoid language structures that are easy to get wrong, while C++ was designed to have powerful language features with the knowledge that they would be misused. Therefore, C++ has explicit multiple inheritance and user-definable operator overloading. C++'s typing system is intentionally weaker than Java's, to facilitate low-level programming, even though it makes it easier to mess up. | |||||||
feedback
|
|
This might be useful: | |||
feedback
|
|
If you're making the switch to C++ from Java, you'll need to get very familiar with pointers and all the trouble (joy) they can cause. Perhaps if you feel that you'd like something to boost your confidence why not take a look at static code analysis. There's a good SO thread about free versions that can help you catch errors your compiler may not find. I find these tools to be a good "guide" for anyone, even experienced C++ developers. They get you thinking ahead of time about code. | |||
|
feedback
|
|
One thing which helped me picking up C++ was to implement my own vector class (using templates of course) and use it to implement a gradient descent optimization. It took quite some time until it worked and I had to fight with a lot of bugs, mostly because of my poor understanding of the language. However after all I learnt a lot when doing that. A few more tips:
| |||
feedback
|
|
You should do 3 things, IMO:
| |||
|
feedback
|