gpt4 book ai didi

java - 导致异常的构造函数的 void 修饰符

转载 作者:行者123 更新时间:2023-12-01 08:07:42 28 4
gpt4 key购买 nike

public class This_testing {

int x,y;

public This_testing(int x,int y){ //Why modifier void here would cause exception?
this.x=x;
this.y=y;
}

public static void main(String [] args){
This_testing t =new This_testing(40,50);
System.out.println(t.x+" "+t.y);
}
}

为什么对构造函数 This_testing 使用修饰符 void 会导致以下异常:

Exception in thread "main" java.lang.RuntimeException: Uncompilable source code - 
constructor This_testing in class practice.This_testing cannot be applied to given types;
required: no arguments
found: int,int
reason: actual and formal argument lists differ in length
at practice.This_testing.main(This_testing.java:13)

最佳答案

构造函数不返回任何内容,甚至 void 也不返回。这就是它们在语言规范中的定义方式。

您可以创建一个名为 This_testing 的方法,该方法返回 void 但这将被视为方法,而不是构造函数(因此,使用 new This_testing( x, y) 无法编译)。

关于java - 导致异常的构造函数的 void 修饰符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20206006/

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