Trending Interface Builder Discussions

Follow

Ask the Community


Ask any professional question and get answers from other specialists.

Stream language
Mohd shahnawaz khan's image
Question added by Mohd shahnawaz khan Associate Project Cognizant Technology Solution
10 years ago
Answers:
4
Followers:
Views:
2481
Vote Count:
1
Answer should contain a minimum of 25 characters.
Tanmay Karmakar's image
Question added by Tanmay Karmakar
10 years ago
Answers:
23
Followers:
Views:
488
Vote Count:
1
Answer should contain a minimum of 25 characters.
Huzefa chikhly's image  
Answer added by  Huzefa chikhly, JAVA DEVELOPER, PRIMALINK SOLUTIONS INDIA PVT LTD
10 years ago

the basic diffrence between interface and abstract class is, interface have all the method declaration only but abstract class can have method declaration as well as met ... See More

Deb Kumar Das's image  
Answer added by  Deb Kumar Das
10 years ago

1.abstract class is a class but interface is not.2.abstract class can have instance methods that implement a default behavior.An Interface can only declare constants and ... See More

Ranjita singh's image  
Answer added by  Ranjita singh, Trainee Ad Operation Engineer, Audience Science India Private Limited
7 years ago

1. A abstract class can have an abstract methods and non abstract method, although a interface can have only abstract methods. 2. Abstract class can be inherited by abstr ... See More

syamkumar borugadda's image  
Answer added by  syamkumar borugadda
7 years ago

interface can contains only  set of abstract methods and static constants.where abstract class contains abstract method and concrete methods.

Venkat Tanneru's image  
Answer added by  Venkat Tanneru, Android Mobile Application Developer, Younify Applications Pvt ltd
7 years ago

java abstract class can have instance methods that can have a default behaviour andvariables declared in interface are default final

chandrakala Gajjala's image  
Answer added by  chandrakala Gajjala
7 years ago

In abstract class have both abstarct and non- abstarct methods.Abstract class don't support multiple inheritance.In abstract class,class name must contain abstract k ... See More

Tarun Kumar's image  
Answer added by  Tarun Kumar
7 years ago

In abstract class , we can achieve zero to hundred percent abstraction, where as in interface we can achieve hundred percent abstraction, In abstract class , class name m ... See More