Skip to content Skip to sidebar Skip to footer
Showing posts with the label Language Design

Are There Any More Elegant Ways Of Handling Lists In Java ? (python Vs Java)

I do like the way I can treat lists in Python. It does any recursion solution to look easy and clea… Read more Are There Any More Elegant Ways Of Handling Lists In Java ? (python Vs Java)

Class Instance As Static Attribute

Python 3 doesn't allow you to reference a class inside its body (except in methods): class A: … Read more Class Instance As Static Attribute