Component Object Model

不羁的心 提交于 2019-12-04 17:57:01
  1. Yes.

  2. COM is still core to the way Windows works. Wherever a C-style api won't suffice, COM is the next step to expose an object model. And yes, Store apps are COM servers.

  3. COM is native code, it adds very little overhead and is usable from practically any language that was ported to Windows.

  4. Visit amazon.com to search for books, read the reviews.

It is not essential anymore to have to know COM to write programs that run on Windows. Lots of work was done to wrap it and make it friendlier. The language projections in Store language runtimes are notable, there are very few traces of the underlying COM code visible. Relegating it to a status that's comparable to learning assembly language programming.

Mithun Patra

Component based model developed by Microsoft to introduce the language interoperability. To know about COM we first know the scenario when COM concept comes in the .Net. We know that in object orientation concept was re usability of the code within the same application, but in any case if i want to call the function of any class from other application of different language then it was not possible. Another disadvantage of object orientation is that after development of the software any change is required in any classes then the whole application needed to be rebuilt and deploy again to the client machine. Actually the problem is that in this case we are getting the re-usability for a particular application not for whole application level.You can read more about COM here : Component based model

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