While browsing some java-repositories I stumbled upon Class which had the Prefix I
to their names.
For example i found the class IPlayer
and i could not figgure out what this I shall mean.
While browsing some java-repositories I stumbled upon Class which had the Prefix I
to their names.
For example i found the class IPlayer
and i could not figgure out what this I shall mean.
This is a naming convention some people use to name interfaces. IPlayer
means interface for Player. I stands for Interface
This means that this class is an interface. It is a convention used for this identification.