Well generally speaking, a language is only as hard as the libraries it has. Take the Windows API for C. It's hard and at many times inefficient for making programs to do simple things. That's where .NET framework comes in. You can still use C++ with the .NET framework. The language isn't any easier, but the libraries you are using are easier to work with.
Learning Java takes quite a while, especially for a beginner. However after my first 5 minutes in java I understood the Swing library and could make a simple program. If I wanted to do the same with the Windows API it would take me a good month.
In the end, mastering and understanding the innards of languages is time consuming, but is directly proportional to the effort spent.
C++ can be learned in 21 Days (as the book goes) but it takes years to fully understand it.
learn? Most people never stop learning stuff about the language they use (there is so much depth). Hard and easy is also fairly open. It is hard to program a web browser in Assembly. But it is easy to manipulate memory. – Philip Whitehouse Jan 1 at 0:20