当像 new(Date) 这样编写时,如何将参数传递给构造函数?

发布于 2024-12-17 08:07:58 字数 260 浏览 0 评论 0原文

作为问题的推论,如果您创建了使用语法 new (Date) 的 javascript 对象,如何传入任何构造函数参数/参数?

换句话说,是否存在与 new Date(2000) 等效的内容,或者您​​就是这样做的?

As a corollary to this question, if you created an object in javascript using the syntax new (Date) how would you pass in any constructor args/params?

In other words is there an equivalent of new Date(2000) or is that just how you would do it?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

盗梦空间 2024-12-24 08:07:58

括号返回所包含表达式的结果,因此这将起作用:

new (Date)(2000);

这与以下内容相同:

new Date(2000);

The parens return the result of the contained expression, so this will work:

new (Date)(2000);

This is the same as:

new Date(2000);
守望孤独 2024-12-24 08:07:58

您是否尝试过:新(日期)(2000)?不完全是漂亮的代码...

Have you tried: new (Date)(2000)? Not exactly pretty code...

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