Java Tutorials || Java OOPS || Types of Inheritance || by Durga Sir

preview_player
Показать описание
You an see more Java videos following link:
---------------------------------------
Java tutorial by durga sir

Java 9 by durga sir

Java 1.8 Version New Features by Durga sir

Adv Java JDBC Tutorial by Durga sir

OCJA 1.8 Java SE 8 Programmer - I (1Z0 - 808 ) By Durga sir

Core Java by NagoorBabu sir

Advenced Java by Nagoorbabu sir

CoreJava by Ratan

Advanced Java jdbc by Ratan

Advjava tutorials - JSP by Ratan

Adv java servlets tutorial by ratan

Servlet and JSP Tutorial by anji reddy

Advanced Java Jdbc by Anjireddy

Hibernate byAnjireddy

Struts by Anjireddy

Spring by Mr.AnjiReddy

ADV JAVA by Naveen

Spring by Mr.Naveen

Hibernate by Mr. Naveen

Struts by Mr.Naveen
Рекомендации по теме
Комментарии
Автор

We are really blessed by god and Durga Sir because Durga Sir always with us.

sam
Автор

Love your "left and right" sir!!

wonderlust
Автор

Tqq so Such... A good explanation ... I never heard🙂

keerthiramani
Автор

Thank u sir you are the best teacher in the java

nilusingh
Автор

Thanks for that vedio sir and always your vedios are best for us

prajwalbonde
Автор

Durg sir some property goes to Rekha as well based on encapsulation reference ....same can consider as abstract relation with hidden secret

najendertyagi
Автор

watching it at 1.25 speed, helps to cover lot of things in less time !!!

rahulv
Автор

Day 12 (1) - 08/01/24
OOPs - Lecture 19 completed ✅
Thank you!

radhikabhutada
Автор

thank you very much sir for this video

saddamahmad
Автор

Sir. My coaching institute sir told me hybrid inheritance is possible in java please explain briefly

Jagadeesh
Автор

Tomorrow will come chotabachan😂 Easily Understandable Example

PraveenKumar-ujih
Автор

love you my lovely sir last night of my exam

Kolkatatiya
Автор

import java.util.*;
class parent
{
int a;
}
class child extends parent
{
int b, c;
child()
{
a=10;
b=20;
}
c=a+b;
}
class test
{
public static void main(String args[])
{
child obj=new child();
System.out.print(obj.c);
}
}
Sir this code is showing error like this sirsource_file.java:14: error: <identifier> expected
c=a+b;
^
1 error
could u pls tell what mistake I have written sir??plz

mk