Did Java invent interfaces?
Posted
by Jordão
on Stack Overflow
See other posts from Stack Overflow
or by Jordão
Published on 2010-05-03T13:47:05Z
Indexed on
2010/05/03
13:58 UTC
Read the original article
Hit count: 288
I know about C++ pure virtual classes, but Java went one step further and created a first-class (no pun intended) concept for multiple-interface (not implementation) inheritance, the interface
. It's now a staple of major statically-typed languages. Did Java invent the interface concept? Or did it appear in older languages also as a first-class concept?
© Stack Overflow or respective owner