gpt4 book ai didi

java - 有没有一种好方法来跟踪传递给类的参数变量

转载 作者:行者123 更新时间:2023-12-01 11:52:58 36 4
gpt4 key购买 nike

public class Tester {

private double length;
private double width;
private double height;

public Tester(double ________1, double _________2, double _________3){

length = _________1
width = _________2
height = _________3

}//Tester constructor
}//Tester class

上面是一个简单的示例代码,我想知道在创建类时是否有一个“好的”命名约定来命名变量?

例如,_____1、_____2、_____3 的名字比较好?

会是类似 testerLength、testerWidth、testerHeight 的东西吗?

最佳答案

参数的名称应该非常有意义,因为您将在 Javadoc 中看到它们。您在这里有多种选择,我将给您举几个例子:

每个参数之前的

a:

public Tester(double aLength, double aWidth, double aHeight) {
length = aLength;
width = aWidth;
height = aHeight;
}

正如@Cyber​​提到的:使用_:

public Tester(double length, double _width, double _height) {
length = _length;
width = _width;
height = _height;
}

和我个人最喜欢的,只需使用相同的名称和范围:

public Tester(double length, double width, double height) {
this.length = length;
this.width = width;
this.height = height;
}

关于java - 有没有一种好方法来跟踪传递给类的参数变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28650225/

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