Bugmaster comments on Programming Thread - Less Wrong

12 Post author: Viliam_Bur 06 December 2012 07:07PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (64)

You are viewing a single comment's thread. Show more comments above.

Comment author: Bugmaster 07 December 2012 02:52:17AM 1 point [-]

Java is simple (except for its libraries) and not very enlightening.

Maybe not, but I still prefer its approach to inheritance and polymorphism than the approach some other languages take. For example, why Python is a great language overall, I dislike its entire OOP mechanism. IMO, Java is worth trying just because of that.

Comment author: Viliam_Bur 07 December 2012 02:35:33PM *  0 points [-]

Yes, Java makes the distinction between:

  • these classes do the same thing (but internally they can be completely different); and
  • this class is a copy of that class, with some added data and functionality.