创建新实例时如何隐藏 Object 的默认方法

发布于 2024-12-21 12:20:45 字数 259 浏览 2 评论 0原文

我想在创建实例时隐藏所有默认方法,如 toString、hasOwnProperty、valueOf 等。这怎么可能?

function Foo() {};
var x = new Foo();
x.toString(); //should fail

另外;我可以理解,如果我这样做,我就无法执行以下操作:

console.log(x);

但是还有什么使用这些函数呢?

I would like to hide all the default methods like toString, hasOwnProperty, valueOf etcetera when creating an instance. How is this possible?

function Foo() {};
var x = new Foo();
x.toString(); //should fail

And additionaly; I can understand that if I do this, I cannot do the following:

console.log(x);

But what else is using these functions?

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

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

发布评论

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

评论(1

○愚か者の日 2024-12-28 12:20:45

如果您确实愿意,可以重写 toString 方法:

    Foo.prototype.toString = undefined;

If you really wanted to you could write over the toString method:

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