Java 类的“+” 运算符

2022-09-03 16:58:17

我有一个这样的类:

private static class Num {
    private int val;

    public Num(int val) {
        this.val = val;
    }
}

是否可以使用“+”-运算符添加到类的对象?

Num a = new Num(18);
Num b = new Num(26);
Num c = a + b;

答案 1

不能。 仅对数字、字符和 重载,并且不允许定义任何其他重载。+String

有一种特殊情况,当您可以连接任何对象的字符串表示形式时 - 如果前两个操作数中有一个对象,则在所有其他对象上调用。StringtoString()

下面是一个插图:

int i = 0;
String s = "s";
Object o = new Object();
Foo foo = new Foo();

int r = i + i; // allowed
char c = 'c' + 'c'; // allowed
String s2 = s + s; // allowed
Object o2 = o + o; // NOT allowed
Foo foo = foo + foo; // NOT allowed
String s3 = s + o; // allowed, invokes o.toString() and uses StringBuilder
String s4 = s + o + foo; // allowed
String s5 = o + foo; // NOT allowed - there's no string operand

答案 2

不,因为詹姆斯·高斯林(James Gosling)是这么说的:

我把运算符过载作为一个相当个人的选择,因为我看到太多的人在C++滥用它。

资料来源:http://www.gotw.ca/publications/c_family_interview.htm

参考:为什么Java不提供运算符重载?