Working with out parameters 编辑

 

When working with XPCOM components, you might come across method declarations like the following one:

[scriptable, uuid(8B5314BC-DB01-11d2-96CE-0060B0FB9956)]
interface nsITransferable : nsISupports {
  ...
  void getTransferData ( in string aFlavor, out nsISupports aData, out unsigned long aDataLen ) ;
  ...
}

The getTransferData method takes three parameters, aFlavor, aData, and aDataLen, and returns nothing. aData and aDataLen are marked as out, meaning that they act as "return values" for this method, and are changed during the method call. These are so-called out parameters.

Usage

In order to use such a method from JavaScript via XPConnect, you have to follow a specific rule. To get at the out parameters, you have to pass in an object. After the call, this object will have a new property called value, which contains the out values.

Assuming you have an object called transferable, you would invoke getTransferData() as follows:

var aData    = {};
var aDataLen = {};

transferable.getTransferData("text/unicode", aData, aDataLen);

var data    = aData.value;
var dataLen = aDataLen.value;

As you can see, after the call to getTransferData(), the out values are then contained in the value properties of aData and aDataLen.

Implementation

When implementing a method which has out parameters in JavaScript, you have to set a new property called value to the out parameter which will hold the required value.

You would implement getTransferData() as follows:

 getTransferData: function(aFlavor, aData, aDataLen) {
   ..
   ..
   aData.value = resultData;
   aDataLen.value = resultData.length;
 }

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:60 次

字数:2470

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文