What is the difference between the following two interface. How does the term "abstract" used along with an interface makes it different?.
abstract interface Bendable
{
}
interface Bendable
{
}
What is the difference between the following two interface. How does the term "abstract" used along with an interface makes it different?.
abstract interface Bendable
{
}
interface Bendable
{
}
It doesn't make it any different. The 'abstract' is implied. You can find the same information in the Java Tutorials somewhere (I remember reading it, but don't remember where), but this question was also already asked here.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.