I like to know how can I recognize whether it is a class or interface by seeing the name ..
For example all class name starts with capital letters..
method name starts with small name..
Is there any specific way to recognize it?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Some people make all their interfaces start with an I. Like
IPopup, orIController. I personally hate this.I was taught that an interface should be an adjective, a class should be a noun. For example: Class:
Controller, Interface:Controllable