What is the difference between a class library and a namespace?

落爺英雄遲暮 提交于 2020-07-04 09:01:25

问题


What is the actual difference between class library and a namespace? I know both are used to group together classes, namespace etc. Can anyone tell in which scenario should I use a class library and when to go for creating a new namespace.


回答1:


Namespaces provide a notional separation for classes, class libraries provide a physical separation (in windows think a standalone dll).

Class libraries are useful for when you want to wrap up functionality that can be shared with other projects.

Imagine creating a windows application where you split the UI and the implementation classes (class library) into 2 different projects. Then you find you need to have a web version of the same thing. You can just import the class library you created from the windows application and you have all your implementation available to you and just focus on the web UI.

If you'd created the whole windows app in one project using namespaces to seperate them, doing that would be tricky & messy. (ever tried importing an exe?)

It is worth pointing out that class libraries will themselves likely use namespaces to provide further notional separation to the classes within them




回答2:


The purpose of namespaces is to avoid name collisions. Namespace should be used when your have several hundreds of classes. Other indicator - when your code is used by somebody else and your names may collide with names in the user code.

Other important difference is that class is always a data type. You can define variables with this type. Namespace is not a type. You cannot define vars with the namespace.



来源:https://stackoverflow.com/questions/11427223/what-is-the-difference-between-a-class-library-and-a-namespace

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!