Skip to main content

Posts

Showing posts with the label java array

java learning first step: in comparison to python

Introduction: I didn't start my career with java, but with python and a bit of C. Then years after, I am learning java for android projects. In this blog, I will point out how I am learning java and also a little bit of resources and information along the way to help you learn.  This is more for a person who already is familiar with the programming concepts but is getting accustomed with the java syntax. Also it only spans to very basic and if people like it then only I will proceed with further details. I have taken guidance and screenshots from the android course by rob percieval for this blog. If you want to learn android, do take his course. Thanks and lets begin. Initial observations:  (1) a java code needs to have a class to start with. Also each class has method or functions associated to a class. among these methods, it must have the main method. (2) void means it returns nothing. (3) static means some variable which doesn't change at all. it is only dependent on ...