gpt4 book ai didi

java - 可以在构造函数方法参数中设置类变量吗?

转载 作者:行者123 更新时间:2023-12-02 07:59:29 25 4
gpt4 key购买 nike

是否可以通过简单地使用构造函数的参数实例化类来设置类变量?

伪代码

public class Employee {
String first_name;
String last_name; // can this be set automatically from the parameter of the constructor function without having to explicitly set it?

public Employee (String firstName, String lastName) {
first_name = firstName; // is there a way to avoid having to type this?
last_name = lastName;
}
}

最佳答案

不,您必须明确设置它。

但是,许多 IDE(例如 Eclipse)允许您编写字段声明,然后自动生成设置它们的构造函数。

(注意:我建议您将字段设为 private,并尽可能将字段设为 final。此外,避免在标识符中使用下划线。)

关于java - 可以在构造函数方法参数中设置类变量吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9121349/

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