gpt4 book ai didi

java - 在字符串替换方法中使用 CharSequence 作为参数的原因

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

为什么 String 类中的某些方法具有 CharSequence 类型的参数而其他方法具有 String 类型的参数,是否有逻辑解释?
例如:

public String replace(CharSequence target, CharSequence replacement)
public boolean startsWith(String prefix)
为什么replace 方法不像startsWith 方法那样使用String 作为其参数?

最佳答案

Is there a logical explanation why some methods in String class have parameters with CharSequence type and others with String type?


简答: 向后兼容性。
CharSequence 在 Java 1.4 中添加。
replace(CharSequence target, CharSequence replacement) 是在 Java 1.5 中添加的,因此它可以使用已经存在的 CharSequence类型。
startsWith(String prefix) 从 Java 1.0 开始就存在,所以它不能使用不存在的 CharSequence类型,并且不能在 Java 1.4(或更高版本)中修改,因为这会导致向后兼容性问题。

Why replace method does not use String for its parameters just like startsWith method does?


所以你可以传递实现 CharSequence 的其他类型的对象.

关于java - 在字符串替换方法中使用 CharSequence 作为参数的原因,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62485651/

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