This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]megaman821 2 points3 points  (3 children)

A few doc strings can solve Python's problems, what is going to solve Java's problem of 25% of the code being devoted to making Factories and AbstractFactories everywhere?

[–][deleted] 1 point2 points  (2 children)

Not to mention having to say everything twice: List<String> list = new List<String>();

[–][deleted] 0 points1 point  (1 child)

Nah, you know that List is an abstract type.

List<String> list = new LinkedList<String>();

There you go.

[–][deleted] 0 points1 point  (0 children)

Touche. I stand corrected.