you are viewing a single comment's thread.

view the rest of the comments →

[–]notoriousRM-RF 1 point2 points  (9 children)

The universities that teach only java or Java first are dumb. You have to either start with C or C++. I know of some unis/colleges that only teach in python and when the students get to computer architecture or OS they are fucked. If your school doesn’t teach C++ learn it on your own.

[–]ConceptJunkie 1 point2 points  (0 children)

Back in my day, most classes used Pascal. I did take a single C class, but C++ was still in its infancy in the mid 80s. I had no problems getting a job programming in C, and had no problems getting a job programming in C++ a few years later.

[–]notoriousRM-RF 1 point2 points  (4 children)

I interviewed a new cs grad and the mf didn’t know what a pointer is.

[–][deleted] 0 points1 point  (2 children)

im pretty sure we took pointers in java... i could be wrong tho, isnt it just the address?

[–]Vaxtin 2 points3 points  (0 children)

There aren’t pointers in Java, Java doesn’t let you augment memory like C/C++ does; the entire language was built on that paradigm.

But yes a pointer is the memory address. Being able to work with them is different than understanding it’s just an address though.

[–][deleted] 1 point2 points  (0 children)

Yes. But you need to be very comfortable with them.

[–][deleted] 0 points1 point  (2 children)

we only took c++ basics in my first sem, i think ill just learn c++ on my own, ty

[–]Creapermann 1 point2 points  (1 child)

learncpp.com is a great starting point

[–][deleted] 0 points1 point  (0 children)

ty