Like other keywords in java, final is also a keyword used in several different contexts to define an entity which cannot later be changed.
Here in this tutorial we will be dealing with final classes, final methods, final variables and also I will be covering blank final variabl...
12/29/11
12/16/11
Java Graphics Tutorial II - Layouts
In the previous tutorial of Java Graphics, I explained about panels, frames and windows which we can put our items. But we didn't set the layout of the window , panel or frame in our last tutorial, what we did was we used the default layout.Today in this tutorial we will be understanding about the...
12/13/11
Python Tutorials : Data Types - NUMBERS
This Post is about
numbers and mathematical operations. In this tutorial we shall be
covering data types, operators and type conversion. To represent
'Numbers' in python, we have int, float, complex datatypes. For conditional statements, we have 'Bool' datatype
Type ipython on the Terminal...
12/10/11
Python Tutorial : Installing IPython (Ubuntu)
Hello Guys, Code 2 Learn starts off its Python Tutorial. Like Java, C++, C etc, Python is also a Programming Language. Python is a general-purpose, high-level programming language whose design philosophy emphasizes code readability.
IPython provides a rich toolkit to help you make the most...
12/3/11
Java Array tutorial with Examples
After seeing many people having doubt about using arrays (in Java) and how they are stored, when are they created etc. i decide to do a post on Arrays in Java, to give my readers a broader and clear view about Arrays declaration, creation and intialization.
Definition, Arrays are complex variablesthat...