gpt4 book ai didi

java - 声明 Java 对象数组

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

我有以下代码,我已经修改了多次:

public class double3 {
public double x=0;
public double y=0;
public double z=0;
public double3(double a, double b, double c){
this.x=a;
this.y=b;
this.z=c;
}
}


double3[] samples = new double3[4];//syntax error on token ";", { expected after this token
samples[0]=new double3(1,2,3);

这里发生了什么以及 Eclipse 想对我说什么?

最佳答案

声明

double3[] samples = new double3[4];
samples[0] = new double3(1,2,3);

应该位于代码块中,例如方法、构造函数或实例初始值设定项

关于java - 声明 Java 对象数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19825990/

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