gpt4 book ai didi

java - 从什么时候开始使用运算符 + 进行字符串连接?

转载 作者:行者123 更新时间:2023-12-01 14:08:49 24 4
gpt4 key购买 nike

所以我的问题相当简单;

  1. 谁是第一个使用加法运算符进行字符串连接的人?
  2. 如果是 Java,他们为何决定这样做?
    • Sun 似乎明确禁止 Java 中的运算符重载,因为它允许您重新定义运算符,这会打破人们对该运算符的假设。
    • 然而他们决定实现一个字符串连接加法运算符,这违反了加法运算符的交换律?

最佳答案

根据java,编写代码的程序员不能重载运算符,但就java语言而言,+运算符被重载,它对基元(例如int和double)和String对象执行加法。

In a language that supports operator overloading like C++, you can turn a + operator to perform a subtraction, resulted in poor codes.That is the case Java designers doesn't allow programmer to overloade a operator.

在 Java 中,String 对象在 Java 中受到特殊处理,因为它们在程序中经常使用。基元存储在调用堆栈中,这需要更少的存储空间并且操作起来更便宜。另一方面,对象存储在程序堆中,需要复杂的内存管理和更多的存储空间。
出于性能原因,Java 的 String 被设计为介于基元和类之间。

String literals are stored in a common pool. This facilitates sharing of storage for strings with the same contents to conserve storage.This is also a case The Java designers think to overload + for String concatination to improve performance and give convenience to programmer.

关于java - 从什么时候开始使用运算符 + 进行字符串连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18695207/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com