In a large Application is there any way to distinguish user-defined classes with built-in classes without checking ?
In a large Application is there any way to distinguish user-defined classes with built-in
Share
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.
You haven’t specified which platform you’re talking about, but in both Java and .NET, you’re recommended to use the organisation name in the namespace, e.g.
Microsoft.CSharp.*orcom.google.base.*. That means if you know the full name of the class, it should be fairly obvious where it comes from… and an IDE will generally show you the full name of the class (including the namespace) if you hover over the brief name in code.If this doesn’t help, please clarify the question.