gpt4 book ai didi

java - 如何使用set方法来设置数据字段?

转载 作者:行者123 更新时间:2023-12-01 18:18:40 27 4
gpt4 key购买 nike

在一个类中,我定义了一个 setX 方法

public class Point{
int x;
int y;
...

public int setX(int x){
this.x = x;
}

...
}

在另一个类中,我需要创建一个点对象并将其x字段设置为1,我不知道该写什么。这是我写的

public class Lab1{
public static void main (String[] args){
Point a;

a.x = new setX(1);
...
}
}

我该怎么办?

最佳答案

Setter 应该是 VOID,因为它们不返回任何值......对吗?因为他们只设置实例变量

public void setX(int x){
this.x = x;
}

在你的 Point 类中你应该有一个构造函数,对吧?您可以从 Point 类创建新对象。

你是怎么做到的?

像这样:

Point someName = new Point(<SOME INT HERE>);

使用构造函数设置值...不是您的示例

public class Lab1 {
public static void main (String[] args){
Point a = new Point(5);
}
}

您的解决方案

public class Lab1 {
public static void main (String[] args){
Point a = new Point();
a.setX(5);
}
}

关于java - 如何使用set方法来设置数据字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28206294/

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