私は StackOverflow でこの質問を検索し、役立つものを見つけましたが、何ができるかを明確に理解していませんでした...
これらのコードを含むjframeクラスがあります(これは私のクラスの一部です)
public class compiler extends javax.swing.JFrame {
/**
* Creates new form compiler
*/
public compiler() {
initComponents();
}
/**
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {
);
pack();
}// </editor-fold>
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
String[] input= new String[500];
input = jTextArea1.getText().split(" |\n" );
int x=0;
int n=input.length;
int k=0;
String[] other = new String[100];
このプロジェクトでは、「String other」を渡したい別のクラスがあります。しかし、私はそれを行う方法がわかりません。
問題はそれjButton1ActionPerformed
がプライベートな方法であり、変更できないことだと思います。
誰でもこれで私を助けることができますか?