Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an Online Programming Bible? [closed]

I'm interested in Programming especially in Java. Is there a page, which explains different informatics topics in Java or generic for all OOP languages? I mean something wikipedia-styled, but more understandable and just for programming/informatics.

Maybe with exercises, but basicly it should explain different problems of informatics.

like image 390
Sibbo Avatar asked Dec 04 '22 09:12

Sibbo


1 Answers

There are a lot of good online resources for learning Java, and many of them will teach you good OOP practices as well.

  • The Java Tutorials
  • Java API Specification
  • Thinking in Java 4th ed. by Bruce Eckel
  • The Java Language Specification
  • The Java Virtual Machine Specification

For programming in general though, I recommend Structure and Interpretation of Computer Programs.

like image 145
Bill the Lizard Avatar answered Dec 05 '22 21:12

Bill the Lizard