The Tutorials in this series are created using JDK 1.6 on Ubuntu 11.10. It is a free and open source high level programming language,simple as well as object oriented language. Read more
Foss : Java - Bengali
Outline: super কীওয়ার্ড super class এর মেথড কল করা super class এর Constructor Employee এবং Manager ক্লাস ব্যবহার করে super keyword এর ডেমো Single inheritance extends keyword এর ব্যবহা..
Outline: final কীওয়ার্ড final কীওয়ার্ড এবং তার প্রয়োগ কি? final কীওয়ার্ড কোথায় ঘোষিত করা যেতে পারে? final ভ্যারিয়েবলস final static ভ্যারিয়েবলস static ব্লক প্যারামিটার হিসাবে final..
Outline: Java তে পলিমরফিজম রান-টাইম পলিমরফিজম ভার্চুয়াল মেথড পলিমরফিজম কম্পাইল-টাইম পলিমরফিজম JVM এর ভূমিকা IS-A টেস্ট কি? স্ট্যাটিক বাইন্ডিং কি? ডাইনামিক বাইন্ডিং কি?
Outline: - Java তে Abstract ক্লাসেস - Abstract Methods কি - Concrete Methods কি - Abstract Methods এবং Abstract Classes এর প্রোপার্টিস - Abstract Methods ব্যবহার করা
Outline: - Java ইন্টারফেস - Interface বাস্তবায়ন করা - Implementation ক্লাস - Interfaces Vs Abstract classes - Multiple Interfaces প্রয়োগ করা - উদাহরণ সহ Interfaces এর ব্যবহার
Outline: Java তে Static ভ্যারিয়েবল কি উদাহরণ সহ Static ভ্যারিয়েবলের ব্যবহার Static ভ্যারিয়েবল Vs Instance ভ্যারিয়েবল Final Static Constants
Outline: - Java তে static মেথড কি? - Static মেথড Vs Instance মেথড - উদাহরণ সহ static মেথডের যবহার - static মেথডে অবজেক্ট ভ্যারিয়েবল পাস করা
Outline: - static block কি? - static block ঘোষিত এবং সংজ্ঞায়িত করা - static blocks লাগু এবং নিষ্পাদিত করা
Outline: - Exception কি? - Exceptions এর ধরণ - Checked Exceptions - Unchecked Exceptions - ArrayIndexOutOfBoundsException ব্যাখ্যা করা - উদাহরণ সহ Checked Exceptions এর প..
Outline: - Custom Exception কি? - custom exception এর প্রদর্শন - Custom exception উদাহরণ - "InvalidMarkException" - "throw" কীওয়ার্ড এর ব্যবহার - custom exceptions এ এরর কিভাবে সমাধান ..
Foss : Java - English
Outline: Getting started with Java Installation * Install jdk from Synaptic Package Manager * Choose openjdk-6-jdk from the list of packages available * Mark it for installation ..
Outline: Java - First Program *write simple java program *print “My First Java Program!” on Console *save the file *file name given to the java file *compile the file *..
Outline: Installing Eclipse *Install Eclipse on Ubuntu on the Terminal *Set up the proxy on the Terminal *Then fetch the list of all the available softwares *Type sudo apt-get up..
Outline: Getting started with Eclipse *Eclipse is an Integrated Development Environment *It is a tool on which one can write, debug and run java programs easily *Open Dash Home and ..
Outline: HelloWorld in Java using Eclipse *Open Eclipse *Create a Java Project named DemoProject *Create a class named DemoClass *Class name and file name will be the same *Ecli..
Outline: Errors and Debugging *When writing a Java Program, here is a list of typical errors: *Missing semicolon(;) *Missing double quotes(".") *Mis-match of filename and classnam..
Outline: Programming features of Eclipse *Auto completion *Sets the corresponding closing brace when we open the brace *Provides a drop-down list of methods when you start typing th..
Outline: Numerical datatypes *define datatypes and numerical datatypes *int *float *byte *short *long *double *range of each numerical datatypes *declaration and initial..
Outline: Arithmetic Operations *Define an operator *Define arithmetic operators *Addition *Subtraction *Multiplication *Division *Modulo *Simple program to demonstrate ari..
Outline: Strings *char datatype *letter,digit,punctuation marks, tab, or space are all characters *Program explaining the variable and the character data *Introduction to strings ..