#42 Multiple Inheritance in Java | In Tamil | Java Tutorial Series | Error Makes Clever

preview_player
Показать описание
In our previous video, we introduced the concept of multiple inheritance in Java. In this follow-up, we are going to discover how to effectively achieve multiple inheritance in Java, addressing common challenges and offering practical solutions.

Here’s what you’ll discover in this video to achieve multiple inheritance you'll learn techniques and approaches to simulate multiple inheritance in Java using interfaces and abstract classes.

Watch as we tackle a specific problem related to implementing multiple inheritance and provide a clear, step-by-step solution.

Now, we’ve set a task to help you practice what you’ve learned. Complete the task and leave a comment with your results or questions!.

Join us to improve your understanding of multiple inheritance in Java and see how these concepts can be applied in real-world scenarios. Don’t forget to like, subscribe, and hit the notification bell to stay updated with our latest content!

#javaprogramming #javatutorial #errormakesclever #multipleinheritance
Рекомендации по теме
Комментарии
Автор

interface readable{
void read();
}
interface writable{
void write();
}
interface storable{
void show();
}
class File implements readable, writable, storable{
public void read()
{

}
public void write()
{

}
public void store()
{

}
}
public class Main{
public static void main(String[] args){
File f = new File();
f.read();
f.write();
f.store();
}
}

AnushaD-zwcd
Автор

I belive you anna beacause currently studying engineering
iii semester so please upload all the vidios anna

AnuAnu-bd
Автор

Bro.. Unga way of teaching enaku rompa pudikum... Azure DevOps engineer role ku ungakita irunthu docker, kubernetes, Jenkins, Terraform, ansible, learn panna nenaikuren, possible ah bro??

Or any point of contact/ trainer suggest panna mudiyuna bro????

SivaMari-pjeh
Автор

interface readable{
void read();
}
interface writeable{
void write();
}
interface storeable{
void store();
}
class file implements readable, writeable, storeable{
public void read()
{

}

public void write()
{

}

public void store()
{

}

}
public class mainclass{
public static void main(String[]args)
{
file f1 = new file();
f1.read();

f1.write();

f1.store();


}
}

tamilselvan-zp
Автор

Tomorrow day after java exam
All are focusing on program
But his voice melting😍

snekasaravanakumar
Автор

package practice;

interface readable{
void read();
}
interface writeable{
void write();
}
interface storeable{
void store();
}

class file implements readable, writeable, storeable{
public void read() {
System.out.println("reading the file");
}
public void write() {
System.out.println("file is wrinting");
}
public void store() {
System.out.println("file is stored");
}
}

public class main {
public static void main (String []args) {
file f1 = new file ();
f1.read();
f1.write();
f1.store();
}
}

manojk
Автор

package practice_java1;
interface readeable{
void read();
}
interface writeable{
void write();
}
interface storeable{
void store();
}
class doc implements readeable, writeable, storable{

@Override
public void store() {


}

@Override
public void write() {
// TODO Auto-generated method stubsysout


}

@Override
public void read() {
// TODO Auto-generated method stub

}



}
public class interface_main {

public static void main(String[] args) {
doc o=new doc();
o.read();
o.write();
o.store();
}

}

DharanishP.r
Автор

package excer_java;
interface readable{
void read();
}
interface writable{
void write();
}
interface storable{
void store();

}
class file implements readable, writable, storable{

public void read() {
System.out.println("read the file");
}
public void write() {
System.out.println("write a file");

}
public void store() {
System.out.println("store a file");
}
}

public class mainclass {

public static void main(String[] args) {
file obj1=new file();
obj1.read();
obj1.write();
obj1.store();
}

}

notify me any mistake in this code

kavithainsaral