Friday, January 27, 2017

food class || show ,adding new item qyt , selling

using oops concept
Food class and create object , create method , constructs method



Saturday, January 21, 2017

abstract class in java

Sunday, January 15, 2017

inheritance in java

Inheritance in java is a mechanism in which one object acquires all the properties and behaviors of parent object.

The class which inherits the properties of other is known as subclass (derived class, child class) and the class whose properties are inherited is known as superclass (base class, parent class).


Inheritance represents the IS-A relationship, also known as parent-child relationship.


Example of Single Inheritance






Example of Multilevel Inheritance




Example of Heirarchical Inheritance




Polymorphism is the ability of an object to take on many forms. The most common use of polymorphism in OOP occurs when a parent class reference is used to refer to a child class object. Any Java object that can pass more than one IS-A test is considered to be polymorphic


There are two types of polymorphism in java: compile time polymorphism and runtime polymorphism. We can perform polymorphism in java by method overloading and method overriding.


Example of method overloading




Example of method overriding




Tuesday, January 10, 2017

Introduction to OOP :

What Is an Object?

An object is a software bundle of related state and behavior. Software objects are often used to model the real-world objects that you find in everyday life. 

What Is a Class?

A class is a blueprint or prototype from which objects are created. 

What Is Inheritance?

Inheritance provides a powerful and natural mechanism for organizing and structuring your software. 

What Is an Interface?

An interface is a contract between a class and the outside world. When a class implements an interface, it promises to provide the behavior published by that interface. 

What Is a Package?

A package is a namespace for organizing classes and interfaces in a logical manner. Placing your code into packages makes large software projects easier to manage.

Friday, December 30, 2016

android_apps_usb_real_device

About 1 week to run android studio 2.2 installed. But I could not install or did not know how to installed usb driver software.

now I am going to show you how to configure USB in android Studio.

1. First installed Android Studio in developer website.
2. Menu bar in android studio.
 
     tools -> sdk manager


then searching Usb google drive and mark this option and installed .

then
computer manager Device and configure .. C: drive user->android-> SDK where google driver software . installed properly
click here


install-spreadtrum-usb-driver-manually

vedio



Sunday, December 25, 2016

java class object

জাভা প্রোগ্রামিং - class and object

Monday, December 19, 2016

super keyword use in Java || জাভায় super কিওয়ার্ড ব্যবহার

জাভায় super কিওয়ার্ড ব্যবহার

java super কিওয়ার্ড  ব্যবহার করা হয় parent class এর object .

super কিওয়ার্ড ব্যবহার:
  1. super is used to refer immediate parent class instance variable.
  2. super() is used to invoke immediate parent class constructor.
  3. super is used to invoke immediate parent class method.


super is used to refer immediate parent class instance variable




super() is used to invoke immediate parent class constructor.



super is used to invoke immediate parent class method

Sunday, December 18, 2016

final keyword use in java || জাভায় final কিওয়ার্ড ব্যবহার

 জাভায় final কিওয়ার্ড ব্যবহারঃ


জাভায় final কিওয়ার্ডটি বিভিন্ন contexts এ ব্যবহার করা হয়। জাভায় final কিওয়ার্ড ব্যবহারে সীমাবদ্ধ করে দেয় একজন ব্যবহারকারিকে । final হতে পারে।
১. Variable
২. Method
৩. Class
১. final Variable:  একটি final variable একবারই assign করা হয়। যদি final variable টি একবার রেফারেন্স করে দেওয়া হয় তাহলে অন্য কোন object দিয়ে পুনরায় ঐ variable কে re-bound হতে পারে না।
উদাহরণ দেখা যাকঃ-



বিঃদ্রঃ c++ const variable এবং জাভা final variable এর মধ্যে পার্থক্য আছে। সি ++  const variable  যখন ডিক্লার করা হয় তখনই assign করে দিতে হয়। কিন্তু জাভার ক্ষেত্রে final variable assign প্রথমে না করলে হবে এটার প্রয়োজন নাই। তবে পরবর্তীতে assign করা যায়। অব্যশই একবার assign করতে হবে।
নিচের উদাহরণটি লক্ষ্য করা যাকঃ-


Final Mehod: একটি final method কে subclass দ্বারা overridden করতে পারা যায় না।
আমারা যদি subclass দ্বারা final method কে  overridden করতে যায় সেক্ষেত্রে ভুল গুলো নিচের প্রোগ্রামে লক্ষ্য করি।


Final class: final class কে সম্প্রাসারিত  (inherited) করতে পারা যায় না।
নিচের প্রোগ্রামটি লক্ষ্য করিঃ-


লেখার মধ্যে কিছু ভুল হলে আমাকে comment করেন জানাবেন। এছাড়া উপরের আলোচিত টপিক্স আর উপর আরও তথ্য আমাকে শেয়ার করতে পারেন।
ভাল থাকুন অন্য কোন topics নিয়ে অন্য কোন সময় আলোচনা করা হবে।

Tuesday, December 13, 2016

Java Basic -How JVM Works – JVM Architecture?

JVM(Java Virtual Machine) acts as a run-time engine to run Java applications. JVM is the one that actually calls the main method present in a java code. JVM is a part of JRE(Java Run Environment).
Java applications are called WORA (Write Once Run Everywhere). This means a programmer can develop Java code on one system and can expect it to run on any other Java enabled system without any adjustment. This is all possible because of JVM.
When we compile a .java file, a .class file(contains byte-code) with the same filename is generated by the Java compiler. This .class file goes into various steps when we run it. These steps together describe the whole JVM.



Image Source : https://en.wikipedia.org/wiki/Java_virtual_machine




Friday, October 14, 2016

java String Array Example

জাভা স্ট্রিং অ্যারে উদাহরণ এ দেখবো কিভাবে ডিক্লেয়ার ও পপোলেট করা যায়। সাথে সাথে দেখাবো কিভাবে সব ইলেমেন্ট কে ইটারেট করা যায়।
শুরু করা যাক তাহলে-
১. প্রথমে StringArrayExample নামে class তৈরি করি।  নিচের কোড লক্ষ্য করি।





output:
The third element is: Science
The size of array is: 4
Index[0] = Bangla
Index[1] = English
Index[2] = Science
Index[3] = Arts
Programming in C
Java
C++
Python