gpt4 book ai didi

java - 如何调用方法及其参数?

转载 作者:行者123 更新时间:2023-12-02 02:51:34 24 4
gpt4 key购买 nike

public class Testing{
private String firstName;
private String lastName;
private double salary;
private String subject;
private String highestDegree;
private int years;


public Testing
(String first, String last, String sub, String degree, double sal, int year)
//constructor being called in the main method.
{
lastName = last;
firstName = first;
subject = sub;
highestDegree = degree;
salary = sal;
years = year;
}
public class Hello{

public static void main(String []args){
//Part missing
}
}

我做了 setter 和 getter,我所缺少的是如何在 main 方法中调用该构造函数。我正在考虑创建一个新的对象,例如测试=新测试(),但我很确定我错过了其他东西。如果我可能缺少更多东西,请告诉我。我正在学习java。

最佳答案

既然您已经定义了自定义构造函数
公共(public)测试(字符串第一个,字符串最后,字符串子,字符串度数,双sal,int年份)
您不能使用默认构造函数。

Testing in = new Testing() // Not allowed now

您必须使用构造函数来定义、实例化和初始化 Testing 类的对象。

public static void main(String []args){
String first = "userName";
...
...

Testing in = new Testing(first, last, sub, degree, sal, year)
}

关于java - 如何调用方法及其参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43768476/

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