全部博文(573)
分类: LINUX
2015-12-07 13:55:12
然而,现在阻止站点的核心功能仍然缺失。 这个接口仍然没有冻结,组件开发人员需要讨论那些功能应该完全公开,所以API没有准备好发布。 这让你处于和大多数使用Mozilla的开发者一样的境地—你想使用一些特定的功能,但是接口似乎天天都在变。
所有的Mozilla的源代码是公开的,并且接口使用也很容易。 抓一个合适的头文件,使用组件或者服务管理器访问你需要的接口和XPCOM对象,实现你将会在你的项目里实现的接口。 这带来了很大的灵活性,当然你会失去一些兼容性。 如果你使用没有冻结的“东西”,那个东西将来可能随着Gecko的版本变化而变化。
如果你想你的组件能够对来自Gecko的变化免疫,你必须只使用已经冻结的接口和APIs。 一般这会在接口申明上面的进行说明。 例如,下面的nsIServiceManager:
/**
* The nsIServiceManager manager interface provides a means to obtain
* global services in an application. The service manager depends
* on the repository to find and instantiate factories to obtain
* services.
*
* Users of the service manager must first obtain a pointer to the
* global service manager by calling NS_GetServiceManager. After that,
* they can request specific services by calling GetService.
* When they are finished they can NS_RELEASE() the service as usual.
*
* A user of a service may keep references to particular services
* indefinitely and only must call Release when it shuts down.
*
* @status FROZEN
*/
|
冻结的接口和函数时GECKO SDK的一部分。 有一个经验,SDK外部的接口可当作是“实验性”的或者未冻结的。 参见侧边拦的信息,它描述了冻结或未冻结的接口怎么影响你的软件开发,它还包括了接口变化会导致严重破坏的一些技术细节。
使用未冻结接口的危险性