RUVIDEO
Поделитесь видео 🙏

Lecture 8: Inheritance in Java смотреть онлайн

Inheritance in Java:
• Mechanism of deriving a new class from an old one is called inheritance. The old class is known as base class or super class or parent class. And new one is called subclass or derived class or child class.


Sub classing is a Relationship:
• In programming, we can often create a model of something e.g. Employee, and then need a more specialized version of that original model e.g. Manager.
• Clearly a manager actually is an employee, but an employee with additional features.


When only one class is derived from a single super class, the type of inheritance is called as single inheritance.
class A
{
int a,b;
A()
{
a=10;
b=20;
}
void displayA()
{
System.out.println(“value of a is :”+a);
System.out.println(“value of b is :”+b);
}
}
class B extends A
{
int k;
B()
{
k = 30;
}
void displayB()
{
System.out.println(“value of a is :”+a);
System.out.println(“value of b is :”+b);
System.out.println(“value of k is :”+k);
}
}
class InheritDemo
{
public static void main(String args[])
{
A ob1 = new A();
B ob2 = new B();
System.out.println (“Detail of class A”);
ob1. displayA();
System.out.println (“Details of class B”);
ob2. displayB();
}
}
Output:
Detail of class A
value of a is = 10
value of b is = 20
Details of class B
value of a is = 10
value of b is = 20
value of k is = 30

Here, only default constructor is there so that B ob2 = new B(); calls the constructor of super class also.
Note that, a class member that has been declared as private will remain private to its class and not inherited in child class.



Please like comment share and subscribe.
Prof. Amol M. Jagtap
For more contact : 7972761065

Что делает видео по-настоящему запоминающимся? Наверное, та самая атмосфера, которая заставляет забыть о времени. Когда вы заходите на RUVIDEO, чтобы посмотреть онлайн «Lecture 8: Inheritance in Java» бесплатно и без регистрации, вы рассчитываете на нечто большее, чем просто загрузку плеера. И мы это понимаем. Контент такого уровня заслуживает того, чтобы его смотрели в HD 1080, без дрожания картинки и бесконечного буферизации.

Честно говоря, Rutube сегодня — это кладезь уникальных находок, которые часто теряются в общем шуме. Мы же вытаскиваем на поверхность самое интересное. Будь то динамичный экшн, глубокий разбор темы от любимого автора или просто уютное видео для настроения — всё это доступно здесь бесплатно и без лишних формальностей. Никаких «заполните анкету, чтобы продолжить». Только вы, ваш экран и качественный поток.

Если вас зацепило это видео, не забудьте взглянуть на похожие материалы в блоке справа. Мы откалибровали наши алгоритмы так, чтобы они подбирали контент не просто «по тегам», а по настроению и смыслу. Ведь в конечном итоге, онлайн-кинотеатр — это не склад файлов, а место, где каждый вечер можно найти свою историю. Приятного вам отдыха на RUVIDEO!

Видео взято из открытых источников Rutube. Если вы правообладатель, обратитесь к первоисточнику.