首页 > Web开发 > 详细

v8 常用js类型

时间:2021-02-12 08:14:56      阅读:35      评论:0      收藏:0      [点我收藏+]
void a(const FunctionCallbackInfo<Value>& args) {
  Isolate* isolate = args.GetIsolate();
  auto context = isolate->GetCurrentContext();

  for (int i = 0; i < args.Length(); i++)
  {
    if (args[i]->IsNumber())
    {
      if (args[i]->IsInt32())
      {
        printf("[%d] int\n", i);
      }
      else {
        printf("[%d] float\n", i);
      }
    }

    if (args[i]->IsString())
    {
      printf("[%d] string\n", i);
    }


    if (args[i]->IsObject())
    {
      if (args[i]->IsArray())
      {
        printf("[%d] array\n", i);
      }
      else if (args[i]->IsAsyncFunction())
      {
        printf("[%d] async function\n", i);
      }
      else if (args[i]->IsGeneratorFunction())
      {
        printf("[%d] gener function\n", i);
      }
      else if (args[i]->IsFunction())
      {
        printf("[%d] function\n", i);
      }
      else
      {
        printf("[%d] object({})\n", i);
      }
    }

    if (args[i]->IsBoolean())
    {
      printf("[%d] bool\n", i);
    }

    if (args[i]->IsNullOrUndefined())
    {
      printf("[%d] null or undefided\n", i);
    }

    args.GetReturnValue().Set(Number::New(isolate, 1));
  }
}
let r = addon.a(
  1,
  2.2,
  "2",
  true,
  () => {},
  null,
  undefined,
  async function fname() {},
  [],
  {}
);

console.log(r);

打印结果

[0] int
[1] float
[2] string
[3] bool
[4] function
[5] null or undefided
[6] null or undefided
[7] async function
[8] array
[9] object({})
1

v8 常用js类型

原文:https://www.cnblogs.com/ajanuw/p/14398183.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!