Study Guide for Familiarization with OOP

I have someone I need to train in Java. This person is well versed in classical c and matlab programming but does not know OOP. I would send them to Sun's online tutorial, but it seems to explain OOP very briefly.

I am looking for a good online tutorial on this topic. Preferably, but not necessarily, in Java.

+4
source share
2 answers

Use online material on an object-oriented programming course in Brown. It includes both lectures, assignments, and laboratories.

http://www.cs.brown.edu/courses/cs015/

+1
source

When I learn Java and OOP, I found the following books very useful:

  • Head First Java Burt Bates, Katie Sierra, Published by O'Reilly Media.
  • Objects First with Java Practical Introduction Using BlueJ by David J. Barnes and Michael Kelling, Published by Prentice Hall
+1
source

Source: https://habr.com/ru/post/1383278/


All Articles