百科狗-知识改变命运!
--

WebAssembly.Table() - JavaScript WebAssembly 对象

梵高1年前 (2023-11-21)阅读数 21#技术干货
文章标签对象

WebAssembly.Table()

WebAssembly.Table()构造函数根据给定的大小和元素类型创建一个Table对象。

这是一个包装了WebAssemble Table 的Javascript包装对象,具有类数组结构,存储了多个函数引用。在Javascript或者WebAssemble中创建Table 对象可以同时被Javascript或WebAssemble 访问和更改。

Note: Tables 对象目前只能存储函数引用,不过在将来可能会被扩展。

Syntax

var myTable = new WebAssembly.Table(tableDescriptor);

Parameters

tableDescriptor该对象具有以下属性:element一个表明储存在该Table中对象的类型。目前只能是:"anyfunc"(函数)。initial该WebAssembly Table初始大小。maximum 可选该WebAssembly Table允许扩展到的最大大小。

Exceptions

  • 如果tableDescriptor不是对象类型,将会抛出TypeError异常。
  • 如果申明了maximum属性并且比initial小,将会抛出RangeError异常。

Table instances

WebAssembly.Table() - JavaScript WebAssembly 对象

All Table instances inherit from the Table() constructor's prototype object — this can be modified to affect all Table instances.

Instance properties

Table.prototype.constructorReturns the function that created this object's instance. By default this is the WebAssembly.Table() constructor.Table.prototype.lengthReturns the length of the table, i.e. the number of elements.

Instance methods

Table.prototype.get()Accessor function — gets the element stored at a given index.Table.prototype.grow()Increases the size of the Table instance by a specified number of elements.Table.prototype.set()Sets an element stored at a given index to a given value.

Examples

The following example(see table2.html source code and live version)creates a new WebAssembly Table instance with an initial size of 2 elements. We then print out the table length and contents of the two indexes(retrieved via null.

var tbl = new WebAssembly.Table({initial:2, element:"anyfunc"});
console.log(tbl.length);  // "2"
console.log(tbl.get(0));  // "null"
console.log(tbl.get(1));  // "null"

We then create an import object that contains the table:

var importObj = {
  js: {
    tbl:tbl
  }
};

Finally, we load and instantiate a wasm module(table2.wasm)using the WebAssembly.instantiateStreaming() method. The table2.wasm module contains two functions(one that returns 42 and another that returns 83)and stores both into elements 0 and 1 of the imported table(see text representation). So after instantiation, the table still has length 2, but the elements now contain callable Exported WebAssembly Functions which we can call from JS.

WebAssembly.instantiateStreaming(fetch('table2.wasm'), importObject)
.then(function(obj) {
  console.log(tbl.length);
  console.log(tbl.get(0)());
  console.log(tbl.get(1)());
});

Note how you've got to include a second function invocation operator at the end of the accessor to actually invoke the referenced function and log the value stored inside it(e.g.get(0)() rather than get(0)).

This example shows that we're creating and accessing the table from JavaScript, but the same table is visible and callable inside the wasm instance too.

鹏仔微信 15129739599 鹏仔QQ344225443 鹏仔前端 pjxi.com 共享博客 sharedbk.com

免责声明:我们致力于保护作者版权,注重分享,当前被刊用文章因无法核实真实出处,未能及时与作者取得联系,或有版权异议的,请联系管理员,我们会立即处理! 部分文章是来自自研大数据AI进行生成,内容摘自(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供学习参考,不准确地方联系删除处理!邮箱:344225443@qq.com)

图片声明:本站部分配图来自网络。本站只作为美观性配图使用,无任何非法侵犯第三方意图,一切解释权归图片著作权方,本站不承担任何责任。如有恶意碰瓷者,必当奉陪到底严惩不贷!

内容声明:本文中引用的各种信息及资料(包括但不限于文字、数据、图表及超链接等)均来源于该信息及资料的相关主体(包括但不限于公司、媒体、协会等机构)的官方网站或公开发表的信息。部分内容参考包括:(百度百科,百度知道,头条百科,中国民法典,刑法,牛津词典,新华词典,汉语词典,国家院校,科普平台)等数据,内容仅供参考使用,不准确地方联系删除处理!本站为非盈利性质站点,本着为中国教育事业出一份力,发布内容不收取任何费用也不接任何广告!)