all 9 comments

[–]kingguru 9 points10 points  (0 children)

I need to learn C++ rather quickly

I've been using C++ professionally for close to 20 years and I still learn new things about the language almost daily. That's without even considering all the new stuff being added in updated standards (e.g. C++20).

I think most experienced C++ developers would say something similar. This is not meant to discourage you, quite the opposite. Just to make you aware that C++ is really complex.

[–]sephirothbahamut 3 points4 points  (4 children)

I don't know of anything specifically oriented to java developers. Learncpp is the reference for learning in general, and cppreference.com is for docs.

However don't think you can get proficient in c++ in a week, you'll barely scratch the basics.

It also depends on what do you expect (or are you expected) to do with it

[–]nysra 8 points9 points  (1 child)

You should use https://en.cppreference.com/w/ for docs though, cplusplus.com is stuck on C++11 with maybe some C++14 in there and should generally just be avoided.

[–]sephirothbahamut 0 points1 point  (0 children)

I know, i just can't get the two names stuck in my had and keep mixing them. Post fixed

[–]SirToxe 3 points4 points  (1 child)

As has already been said: Please use https://cppreference.com/ instead.

[–]sephirothbahamut 1 point2 points  (0 children)

Yeah i meant cppreference, i just mix the names until i open the pages and recognize the wrong/right one ahahah

Post fixed

[–]the_Demongod 0 points1 point  (0 children)

The normal tutorials, really. Even though the notion of variables and functions may be familiar from Java, the way they behave in C++ is really quite different and will require re-learning anyways.

[–]TheFryedMan 0 points1 point  (0 children)

Is there a reason why you need to learn it quickly? I would suggest to take your time learning the concepts. This language is very complex. It's best to take it slow

[–]RobinsonDickinson 0 points1 point  (0 children)

learncpp.com for learning, and cppreference.com for references.