Ask HN: Is Java worth learning?
41–45 of 45 posts
Re: Ask HN: Is Java worth learning?
#42I think every one should learn at least 3 different types of languages (my recommendation for each below): - Interpreted: Current choice is Python, pretty much hands down undisputed. Personally there is a lot to dislike about Python (who doesn't like 24 byte integers?) but that's how things are. - Compiled (VM based): My choice here is C# instead of Java or Go because (1) C# is now available cross platform and more "…
https://en.wikipedia.org/wiki/ALGOL_60#Examples_and_portabil...
Re: Ask HN: Is Java worth learning?
#43Absolutely, its the second most used language on github: http://githut.info/ that list is a nice guide on what you should learn in general. Once learned compliment it by learning Scala.
Re: Ask HN: Is Java worth learning?
#44IMO with all the other languages available Java just doesn't really offer anything special enough to warrant it's dealing with it's awkward type system and verbosity. Unless you want to do something with Java specifically like Android dev it just doesn't offer anything worth the pain. If want higher performance and the type safety that Python doesn't have I prefer Go. It's syntax is very similar to Python and it has some interesting concepts.
Whatever you choose don't choose based off hype/promises of jobs. Most companies will hire engineers who have never used the language(s) in their stack as long you can demonstrate knowledge of core programming concepts. Python's `list`, Java's `ArrayList` and Go's `slice` might have some slight differences in implementations and different warts and what have you but deep down they are arrays. If you are familiar with the data structures and algorithms core to programming you can learn to use any language to solve problems.
At the end of the day a language is just a tool. The concepts that underpin these tools are what is important. So choose a tool you enjoy using and fits the scenario. Here are some links that were helpful for me, hopefully they will be helpful for you:
Python:
- https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial... - Good tutorial written for Flask.
- https://docs.python.org/3/ - Python docs, lots of good info there
- https://docs.djangoproject.com/en/2.0/intro/tutorial01/ - Django tutorial. Good intro to developing applications with Django, probably the most popular/common Python web framework.
Go:
- https://tour.golang.org/welcome/1
General:
- https://www.codecademy.com/catalog/subject/web-development - Very basic tutorials, has Java and Python as well as others
- https://github.com/jwasham/coding-interview-university - Lots of general CS info, this is the important stuff
Re: Ask HN: Is Java worth learning?
#45In my opinion, Java is not an enlightening language. In other words, learning Java will not make you a better programmer in other languages. It is only good for getting jobs. If you do decide to learn it, make sure to use recent educational materials for Java 8+, so you learn how to use advanced features like lambda functions and unsigned integer types.
> It is only good for getting jobs. Beginner will either want a job or write some simple apps. "enlightening" languages are worthless for them.