We are told that an abstract method is a method that is declared without an implementation. What is an implementation, and how does this method look like exactly ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

We are told that an abstract method is a method that is declared without an implementation. What is an implementation, and how does this method look like exactly ?

In abstract classes

2nd Dec 2016, 2:36 PM
Aka
Aka - avatar
3 Answers
+ 1
implementation refers to the code inside a method. in other words,what it does. For example: public int Multiply(int x, int y) { return x * y; } in the above example Multiply would be the name of the method and return x*y is the implementation.
2nd Dec 2016, 2:41 PM
Stefan du Toit
Stefan du Toit - avatar
0
An abstract method is just the firm of the method inside an interface or abstract class public String hello() ; Then in a normal class you can implement that class public normal class implements "some interface class whit the firm we want to implement" { public String hello () System.out.println("hello") ; } }
2nd Dec 2016, 2:46 PM
Dago VF
Dago VF - avatar
0
thanx a lot guyz
7th Dec 2016, 12:18 PM
Aka
Aka - avatar