除 C++ 之外,哪些编程语言支持运算符重载?

发布于 2024-09-02 20:24:46 字数 1436 浏览 2 评论 0原文

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

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

发布评论

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

评论(1

池予 2024-09-09 20:24:46

我想想都觉得好笑。例如,任何 C 编译器都必须区分 int *c;double d = (int) f * (float) g;。在前一种情况下,* 表示 c 是一个指向 int 的指针,而在后一种情况下,它是一个乘法运算符。虽然没有导出到编译器本身之外,但 C 似乎具有运算符重载功能。 C++ 将其导出到编译器之外?

我确信像 Java 这样的其他语言应该有某种机制来告诉 + 或 * 或此类运算符在操作数类型的各种组合和排列之间使用时的情况。

I'm amused thinking about it. Any C compiler for example, must tell between an int *c; and double d = (int) f * (float) g;. In the former case, * indicates c is a pointer to int while in the latter case it is a multiplication operator. Though not exported outside the compiler itself, C appears to have operator overloading feature. C++ exported it outside the compiler?

I am sure other languages like Java should have some mechanism to tell + or * or such operators when they are used between various combinations and permutations of the types of the operands.

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