3 Temmuz 2013 Çarşamba

Get Started dealing with JAVA

    Here are some tips about Java and curcial things that you have to consider if you are into Computer Science or any related fields.

    First of all , Java is an OOP which stands for Object-Orianted Programming
                      Java compeses fully classes and classes contain objects and methods.So lets break them down into specific conditions can be understood easily;

                     Class is a way to say our compiler that what kind of processes we will need to use while building our program.In real world, we,human being , are classes.Therefore these classes can be specified getting some particular names.If i pick one particular thing up in this class then that thing is named Object.So what i have done so far;
   
                   Created a new class which is named " Human "
                   Then i declared an Object named "James" which is related to my class "Human"
                 
                   Using this object is very simple; just we need to be aware of methods may be used into our program.For example; run can be a method in our program because we already know that human can run :) .  
So, the object i created before from "Human" class now is using "run" method by using my "James" object.All things may be considered like a real life in our enviroment.

                   These whole stuff is about how to create source code with Java Programming Language.Ofcourse, there many other important cases can not be passed though it looks so simple.

                   I will talk about the other stuff later on.