gpt4 book ai didi

java - 在java中将表的内容从一个类保存到另一个类

转载 作者:太空宇宙 更新时间:2023-11-04 15:02:35 25 4
gpt4 key购买 nike

我想使用已填充第一类的表格并保留表格内容以在第二类中进行更改

A类:

public class ClassA {

public String catas[][]=new String[100][100];
public int type[][]=new int[100][100];

//code lines

public int createInitBlocr1 (StringBuffer sb, Node trn, int y, Object[] a)
{

//code lines

catas[y][f]=trn.getName();
type[y][f]=trn.getType();
}

public int[][] getType(){
return type;
}

public String[][] getCatas(){
return catas;
}
}

B类:

public class ClassB extends JFrame {


ClassA c = new ClassA();

String[][] nom = c.getCatas();
int[][] nom = c.getType();

private void jbInit() throws Exception {

//using the content of tables and make changes

}

}

我的问题是在 B 类中,我有两个空表,与 A 类中的内容不同

最佳答案

不确定你的问题。您想要 B 类中 A 类数组的副本吗?

使用System.arrayCopy()

否则 B 的数组将只是对 A 的引用。

关于java - 在java中将表的内容从一个类保存到另一个类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22392936/

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